1 #pragma once 2 3 #include <c10/core/ScalarType.h> 4 #include <string> 5 #include <tuple> 6 7 namespace torch::utils { 8 9 std::pair<std::string, std::string> getDtypeNames(at::ScalarType scalarType); 10 11 void initializeDtypes(); 12 13 } // namespace torch::utils 14