41 OrtModel(std::unordered_map<std::string, std::string> optionsMap) {
reset(optionsMap); }
42 void init(std::unordered_map<std::string, std::string> optionsMap) {
reset(optionsMap); }
43 void reset(std::unordered_map<std::string, std::string>);
49 template <
class I,
class O>
50 std::vector<O>
v2v(std::vector<I>&,
bool =
true);
53 template <
class I,
class O>
54 std::vector<O>
inference(std::vector<I>&);
56 template <
class I,
class O>
57 std::vector<O>
inference(std::vector<std::vector<I>>&);
59 template <
class I,
class O>
78 OrtVariables* pImplOrt;
81 std::vector<const char*> inputNamesChar, outputNamesChar;
82 std::vector<std::string> mInputNames, mOutputNames;
83 std::vector<std::vector<int64_t>> mInputShapes, mOutputShapes;
86 bool mInitialized =
false;
87 std::string modelPath, device =
"cpu", dtype =
"float", thread_affinity =
"";
88 int intraOpNumThreads = 1, interOpNumThreads = 1, deviceId = 0, enableProfiling = 0, loggingLevel = 0, allocateDeviceMemory = 0, enableOptimizations = 0;
90 std::string printShape(
const std::vector<int64_t>&);