mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 21:14:14 +08:00
Fixes #ISSUE_NUMBER Pull Request resolved: https://github.com/pytorch/pytorch/pull/139151 Approved by: https://github.com/ezyang Co-authored-by: Aaron Gokaslan <aaronGokaslan@gmail.com>
11 lines
208 B
C++
11 lines
208 B
C++
#pragma once
|
|
|
|
#include <torch/csrc/utils/python_compat.h>
|
|
namespace torch::autograd {
|
|
|
|
PyMethodDef* get_nested_functions_manual();
|
|
|
|
void initNestedFunctions(PyObject* module);
|
|
|
|
} // namespace torch::autograd
|