Added SetCLTuner interface for CLTuner feature support of inference
engine interface framework which has a pure virtual function interface
of SetCLTUner function so the interface implementataion is required.
Change-Id: I2cf2168c899f4762b1f22786acff85229ad26b83
Signed-off-by: Inki Dae <inki.dae@samsung.com>
return INFERENCE_ENGINE_ERROR_NONE;
}
+ int InferenceTFLite::SetCLTuner(const inference_engine_cltuner *cltuner)
+ {
+ LOGI("ENTER");
+
+ // Nothing to do because TFLITE doesn't support CLTuner feature yet.
+
+ LOGI("LEAVE");
+
+ return INFERENCE_ENGINE_ERROR_NONE;
+ }
+
int InferenceTFLite::Load(std::vector<std::string> model_paths,
inference_model_format_e model_format)
{
int SetTargetDevices(int types) override;
+ int SetCLTuner(const inference_engine_cltuner *cltuner) final;
+
int Load(std::vector<std::string> model_paths,
inference_model_format_e model_format) override;