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