microsoft/onnxruntime-extensions
Publicmirrored fromhttps://github.com/microsoft/onnxruntime-extensionsAvailable
operators/math/math.cc
17lines · modecode
| 1 | #include "ocos.h" |
| 2 | #include "negpos.hpp" |
| 3 | #ifdef ENABLE_DLIB |
| 4 | #include "dlib/inverse.hpp" |
| 5 | #endif |
| 6 | #include "segment_extraction.hpp" |
| 7 | #include "segment_sum.hpp" |
| 8 | |
| 9 | |
| 10 | FxLoadCustomOpFactory LoadCustomOpClasses_Math = |
| 11 | LoadCustomOpClasses<CustomOpClassBegin, |
| 12 | CustomOpNegPos, |
| 13 | #ifdef ENABLE_DLIB |
| 14 | CustomOpInverse, |
| 15 | #endif |
| 16 | CustomOpSegmentExtraction, |
| 17 | CustomOpSegmentSum>; |
| 18 | |