1 #include <torch/csrc/jit/tensorexpr/external_functions_registry.h> 2 3 namespace torch::jit::tensorexpr { 4 getNNCFunctionRegistry()5std::unordered_map<std::string, NNCExternalFunction>& getNNCFunctionRegistry() { 6 static std::unordered_map<std::string, NNCExternalFunction> func_registry_; 7 return func_registry_; 8 } 9 10 } // namespace torch::jit::tensorexpr 11