xref: /aosp_15_r20/external/pytorch/aten/src/ATen/Version.h (revision da0073e96a02ea20f0ac840b70461e3646d07c45)
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