From 093abc09d62633f39d3099f2a2c07e23a12919ba Mon Sep 17 00:00:00 2001 From: Sofya Balandina Date: Tue, 10 Jan 2023 13:37:43 +0000 Subject: [PATCH] [apiConformance] Change default value of PERF_COUNT to false (#14859) --- .../src/behavior/ov_executable_network/properties.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/functional/plugin/conformance/test_runner/api_conformance_runner/src/behavior/ov_executable_network/properties.cpp b/src/tests/functional/plugin/conformance/test_runner/api_conformance_runner/src/behavior/ov_executable_network/properties.cpp index 2cc9d2be717..b9cbefab03b 100644 --- a/src/tests/functional/plugin/conformance/test_runner/api_conformance_runner/src/behavior/ov_executable_network/properties.cpp +++ b/src/tests/functional/plugin/conformance/test_runner/api_conformance_runner/src/behavior/ov_executable_network/properties.cpp @@ -33,7 +33,7 @@ INSTANTIATE_TEST_SUITE_P(ov_compiled_model_AutoBatch, OVCompiledModelPropertiesI const std::vector default_properties = { - {ov::enable_profiling(true)}, + {ov::enable_profiling(false)}, {ov::device::id("0")}, };