mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-06 12:20:52 +01:00
This PR begins a series of works to ensure dynamo C++ code is clang-tidy clean. Pull Request resolved: https://github.com/pytorch/pytorch/pull/122259 Approved by: https://github.com/ezyang
12 lines
187 B
C++
12 lines
187 B
C++
#pragma once
|
|
|
|
// C2039 MSVC
|
|
#include <pybind11/complex.h>
|
|
#include <torch/csrc/utils/pybind.h>
|
|
|
|
#include <Python.h>
|
|
|
|
namespace torch::dynamo {
|
|
void initDynamoBindings(PyObject* torch);
|
|
}
|