We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 341e2fa + 07655c2 commit 2f288f9Copy full SHA for 2f288f9
modules/dnn/test/test_ie_models.cpp
@@ -178,12 +178,13 @@ TEST_P(DNNTestOpenVINO, models)
178
Target target = (dnn::Target)(int)get<0>(GetParam());
179
std::string modelName = get<1>(GetParam());
180
std::string precision = (target == DNN_TARGET_OPENCL_FP16 || target == DNN_TARGET_MYRIAD) ? "FP16" : "FP32";
181
+ std::string prefix;
182
183
#ifdef INF_ENGINE_RELEASE
184
#if INF_ENGINE_RELEASE <= 2018050000
- std::string prefix = utils::fs::join("intel_models",
185
- utils::fs::join(modelName,
186
- utils::fs::join(precision, modelName)));
+ prefix = utils::fs::join("intel_models",
+ utils::fs::join(modelName,
187
+ utils::fs::join(precision, modelName)));
188
#endif
189
190
0 commit comments