• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include <torch/csrc/jit/mobile/observer.h>
2 
3 namespace torch {
4 
observerConfig()5 MobileObserverConfig& observerConfig() {
6   static MobileObserverConfig instance;
7   return instance;
8 }
9 
10 } // namespace torch
11