mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 21:14:14 +08:00
Pull Request resolved: https://github.com/pytorch/pytorch/pull/131707 Approved by: https://github.com/zou3519
14 lines
383 B
C++
14 lines
383 B
C++
#pragma once
|
|
|
|
#include <c10/core/impl/PyInterpreter.h>
|
|
#include <torch/csrc/Export.h>
|
|
#include <torch/csrc/utils/pybind.h>
|
|
|
|
namespace torch::detail {
|
|
TORCH_PYTHON_API py::handle getTorchApiFunction(const c10::OperatorHandle& op);
|
|
}
|
|
|
|
// TODO: Move these to a proper namespace
|
|
TORCH_PYTHON_API c10::impl::PyInterpreter* getPyInterpreter();
|
|
TORCH_PYTHON_API bool isMainPyInterpreter();
|