microsoft/onnxruntime-extensions

Public

mirrored fromhttps://github.com/microsoft/onnxruntime-extensionsAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
e0d48e255f28e5465f63e7fc141df1e1d533cc40

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

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
10FxLoadCustomOpFactory LoadCustomOpClasses_Math =
11 LoadCustomOpClasses<CustomOpClassBegin,
12 CustomOpNegPos,
13#ifdef ENABLE_DLIB
14 CustomOpInverse,
15#endif
16 CustomOpSegmentExtraction,
17 CustomOpSegmentSum>;
18