From 916cc2cc9148dd7b96f6b48a4d97e7ecd1ec3d61 Mon Sep 17 00:00:00 2001 From: Kwanghoon Son Date: Wed, 8 Apr 2020 15:50:39 +0900 Subject: [PATCH] dldt common test_2 added. dldt needs xml and bin files. Change-Id: I4161a6869744516fd502a29545ac14b7229e2ffd Signed-off-by: Kwanghoon Son --- test/src/inference_engine_test.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/src/inference_engine_test.cpp b/test/src/inference_engine_test.cpp index 6526721..e26e442 100644 --- a/test/src/inference_engine_test.cpp +++ b/test/src/inference_engine_test.cpp @@ -893,6 +893,8 @@ INSTANTIATE_TEST_CASE_P(Prefix, InferenceEngineCommonTest_2, // TFLITE. ParamType_Load("tflite", INFERENCE_TARGET_CPU, { "/usr/share/capi-media-vision/models/IC/tflite/ic_tflite_model.tflite" }), ParamType_Load("tflite", INFERENCE_TARGET_GPU, { "/usr/share/capi-media-vision/models/IC/tflite/ic_tflite_model.tflite" }), + // DLDT. + ParamType_Load("dldt", INFERENCE_TARGET_CUSTOM, { "/usr/share/capi-media-vision/models/IC/dldt/googlenet-v1.xml", "/usr/share/capi-media-vision/models/IC/dldt/googlenet-v1.bin" }), // OPENCV. ParamType_Load("opencv", INFERENCE_TARGET_CPU, { "/usr/share/capi-media-vision/models/IC/caffe/ic_caffe_model_squeezenet.caffemodel", "/usr/share/capi-media-vision/models/IC/caffe/ic_caffe_model_squeezenet.prototxt" }), ParamType_Load("opencv", INFERENCE_TARGET_GPU, { "/usr/share/capi-media-vision/models/IC/caffe/ic_caffe_model_squeezenet.caffemodel", "/usr/share/capi-media-vision/models/IC/caffe/ic_caffe_model_squeezenet.prototxt" }) -- 2.7.4