microsoft/onnxruntime-extensions

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
0647ce6d14b95209220714685d83659bc0d53aad

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