xref: /aosp_15_r20/external/pytorch/torch/csrc/api/include/torch/python/init.h (revision da0073e96a02ea20f0ac840b70461e3646d07c45)
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