• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include <ATen/Context.h>
2 
3 namespace at {
4 
5 /// Returns a detailed string describing the configuration PyTorch.
6 TORCH_API std::string show_config();
7 
8 TORCH_API std::string get_mkl_version();
9 
10 TORCH_API std::string get_mkldnn_version();
11 
12 TORCH_API std::string get_openmp_version();
13 
14 TORCH_API std::string get_cxx_flags();
15 
16 TORCH_API std::string get_cpu_capability();
17 
18 } // namespace at
19