mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-29 20:14:01 +00:00
Fix a bug in onnxruntime_pybind_state.cc when TENSORRT is enabled (#2326)
This commit is contained in:
parent
8a102c6e99
commit
143ae98a37
1 changed files with 1 additions and 1 deletions
|
|
@ -408,7 +408,7 @@ void addGlobalMethods(py::module& m) {
|
|||
onnxruntime::CreateExecutionProviderFactory_OpenVINO("CPU"),
|
||||
#endif
|
||||
#ifdef USE_TENSORRT
|
||||
onnxruntime::CreateExecutionProviderFactory_Tensorrt()
|
||||
onnxruntime::CreateExecutionProviderFactory_Tensorrt(0)
|
||||
#endif
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue