pytorch/torch/csrc/dynamo/init.h
Jason Ansel f1fdb6efbd Manual changes for moving dynamo to core (#86621)
This is the subset of the changes in #86461 not auto-generated by `copy_to_core.sh`.
Pull Request resolved: https://github.com/pytorch/pytorch/pull/86621
Approved by: https://github.com/albanD
2022-10-11 23:01:21 +00:00

15 lines
250 B
C++

#pragma once
// C2039 MSVC
#include <pybind11/complex.h>
#include <pybind11/pybind11.h>
#include <torch/csrc/utils/pybind.h>
#include <Python.h>
namespace torch {
namespace dynamo {
void initDynamoBindings(PyObject* torch);
}
} // namespace torch