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