1 #pragma once 2 3 #include <torch/csrc/jit/python/pybind.h> 4 #include <torch/csrc/utils/pybind.h> 5 6 namespace torch { 7 namespace jit { 8 // Initialize Python bindings for JIT to_<backend> functions. 9 void initJitBackendBindings(PyObject* module); 10 } // namespace jit 11 } // namespace torch 12