mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-06-04 23:59:56 +00:00
* seperate the training python module; share the execution proivder instance * fix build break * fix cuda test crash; reorg the python module code base * se correct env * use provider customized hash func * fixbuild break * fix rocm break * use const ref in argument * rename the file * move hash func to trainiing module
15 lines
No EOL
336 B
C++
15 lines
No EOL
336 B
C++
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT License.
|
|
|
|
#include <pybind11/pybind11.h>
|
|
|
|
namespace onnxruntime {
|
|
namespace python {
|
|
|
|
void addGlobalMethods(py::module& m, Environment& env);
|
|
void addObjectMethods(py::module& m, Environment& env);
|
|
void addOrtValueMethods(pybind11::module& m);
|
|
|
|
|
|
}
|
|
} |