Lines Matching refs:std
43 std::vector<InferenceOutput> outputs;
44 std::function<bool(uint8_t*, size_t)> createInput;
48 using InferenceInOutSequence = std::vector<InferenceInOut>;
54 std::vector<float> meanSquareErrors;
56 std::vector<float> maxSingleErrors;
58 std::vector<std::vector<uint8_t>> inferenceOutputs;
64 std::vector<float> compileWithoutCacheTimeSec;
66 std::optional<std::vector<float>> saveToCacheTimeSec;
67 std::optional<std::vector<float>> prepareFromCacheTimeSec;
105 bool resizeInputTensors(std::vector<int> shape);
111 bool benchmark(const std::vector<InferenceInOutSequence>& inOutData,
113 std::vector<InferenceResult>* result);
122 const std::vector<InferenceInOutSequence>& inOutData);
144 std::vector<float>* results);
150 std::vector<float>* results);
153 std::string mModelBuffer;
154 std::unique_ptr<tflite::FlatBufferModel> mTfliteModel;
155 std::unique_ptr<tflite::StatefulNnApiDelegate> mTfliteNnapiDelegate;
156 std::unique_ptr<tflite::Interpreter> mTfliteInterpreter;
158 std::vector<int> outputs;
161 std::string mModelFile;
162 std::optional<std::string> mCacheDir;
163 std::string mNnApiDeviceName;