xref: /aosp_15_r20/external/pytorch/torch/csrc/lazy/python/init.h (revision da0073e96a02ea20f0ac840b70461e3646d07c45)
1 #pragma once
2 #include <pybind11/pybind11.h>
3 #include <torch/csrc/Export.h>
4 #include <torch/csrc/utils/pybind.h>
5 
6 namespace torch {
7 namespace lazy {
8 
9 TORCH_PYTHON_API void initLazyBindings(PyObject* module);
10 
11 } // namespace lazy
12 } // namespace torch
13