mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-07 12:21:27 +01:00
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
15 lines
250 B
C++
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
|