Files
pytorch/torch/nativert/python/Bindings.h
Zhengxu Chen 8460131087 [nativert] Add OSS version of ModelRunner (#159268)
Summary: Implement a ModelRunner from scratch with the minimum features for OSS only

Test Plan:
test_export -r NativeRT

Rollback Plan:

Differential Revision: D78979812

Pull Request resolved: https://github.com/pytorch/pytorch/pull/159268
Approved by: https://github.com/dolpm
2025-07-29 21:08:14 +00:00

14 lines
213 B
C++

#pragma once
#include <torch/csrc/utils/pybind.h>
namespace py = pybind11;
namespace torch {
namespace nativert {
void initModelRunnerPybind(pybind11::module& m);
} // namespace nativert
} // namespace torch