mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-21 21:52:11 +00:00
* Expose symbols in onnx and protobuf namespaces in python when building with --enable_external_custom_op_schemas * Add external onnx and protobuf files to wheel * Added an example to demonstrate external custom ops use-case * Added a Linux build pipeline to test external custom ops
13 lines
209 B
Text
13 lines
209 B
Text
#_init and _fini should be local
|
|
VERS_1.0 {
|
|
global:
|
|
PyInit_onnxruntime_pybind11_state;
|
|
extern "C++" {
|
|
onnx::*;
|
|
google::protobuf::*;
|
|
};
|
|
|
|
# Hide everything else.
|
|
local:
|
|
*;
|
|
};
|