1#include <pybind11/pybind11.h>
2#include <torch/csrc/utils/pybind.h>
3
4namespace torch {
5namespace impl {
6namespace dispatch {
7
8void initDispatchBindings(PyObject* module);
9
10void python_op_registration_trampoline_impl(
11 const c10::OperatorHandle& op,
12 c10::DispatchKey key,
13 torch::jit::Stack* stack);
14
15} // namespace dispatch
16} // namespace impl
17} // namespace torch
18