pytorch/torch/csrc/dynamo/init.h
cyy c2eedb7f8a [Dynamo][1/N] Fix clang-tidy warnings in torch/csrc/dynamo/* (#122259)
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
2024-03-21 00:43:25 +00:00

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);
}