1 #pragma once 2 3 #include <torch/csrc/utils/python_stub.h> 4 5 namespace torch { 6 namespace python { 7 /// Initializes Python bindings for the C++ frontend. 8 void init_bindings(PyObject* module); 9 } // namespace python 10 } // namespace torch 11