From: Inki Dae Date: Tue, 3 Mar 2020 00:54:20 +0000 (+0900) Subject: test: Print out test information X-Git-Tag: submit/tizen/20200423.063253~46 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=19c423ddf254e7010b25e1ae2c39c55932ac572a;p=platform%2Fcore%2Fmultimedia%2Finference-engine-interface.git test: Print out test information Change-Id: Ic95b8093d10b7a782ad56ac86389919b4d1775c7 Signed-off-by: Inki Dae --- diff --git a/test/src/inference_engine_test.cpp b/test/src/inference_engine_test.cpp index 602c2fb..df8d958 100644 --- a/test/src/inference_engine_test.cpp +++ b/test/src/inference_engine_test.cpp @@ -50,6 +50,8 @@ TEST_P(InferenceEngineCommonTest, Bind) std::tie(backend_name, target_devices) = GetParam(); + std::cout <<"Bind test : backend = " << backend_name << ", target device = " << target_devices << "\n"; + inference_engine_config config = { .backend_name = backend_name, .target_devices = target_devices @@ -174,6 +176,8 @@ TEST_P(InferenceEngineCommonTest_2, Load) std::tie(backend_name, target_devices, model_paths) = GetParam(); + std::cout <<"Load test : backend = " << backend_name << ", target device = " << target_devices << "\n"; + inference_engine_config config = { .backend_name = backend_name, .target_devices = target_devices @@ -217,6 +221,8 @@ TEST_P(InferenceEngineCommonTest_3, Inference) std::tie(backend_name, target_devices, height, width, ch, input_layers, output_layers, model_paths) = GetParam(); + std::cout <<"Inference test : backend = " << backend_name << ", target device = " << target_devices << "\n"; + inference_engine_config config = { .backend_name = backend_name, .target_devices = target_devices