1 #pragma once 2 3 #include <torch/csrc/jit/python/pybind.h> 4 #include <torch/csrc/utils/pybind.h> 5 6 namespace torch::jit { 7 // Initialize Python bindings for Tensor Expressions 8 void initTensorExprBindings(PyObject* module); 9 } // namespace torch::jit 10