1#pragma once
2#include <c10/macros/Export.h>
3#include <pybind11/pybind11.h>
4#include <torch/csrc/utils/pybind.h>
5
6namespace torch {
7namespace lazy {
8
9TORCH_API void initLazyBindings(PyObject* module);
10
11} // namespace lazy
12} // namespace torch
13