From 26a3a5582414b884487a8c1623543a8d9a9c6902 Mon Sep 17 00:00:00 2001 From: "River.Li" Date: Tue, 9 Jan 2024 15:59:06 +0800 Subject: [PATCH] debug --- src/plugins/intel_cpu/src/plugin.cpp | 1 - .../functional/behavior/ov_executable_network/properties.cpp | 3 ++- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/intel_cpu/src/plugin.cpp b/src/plugins/intel_cpu/src/plugin.cpp index 54fba8fa1c297c..ca043ce092c135 100644 --- a/src/plugins/intel_cpu/src/plugin.cpp +++ b/src/plugins/intel_cpu/src/plugin.cpp @@ -566,7 +566,6 @@ Engine::compile_model(const std::shared_ptr& model, const ov::A } conf.readProperties(config, modelType); - std::cout << "Engine::compile_model - conf.readProperties " << std::endl; calculate_streams(conf, cloned_model); std::cout << "Engine::compile_model - calculate_streams " << std::endl; diff --git a/src/plugins/intel_cpu/tests/functional/behavior/ov_executable_network/properties.cpp b/src/plugins/intel_cpu/tests/functional/behavior/ov_executable_network/properties.cpp index 0e790d64b82ff4..cbd487779c847b 100644 --- a/src/plugins/intel_cpu/tests/functional/behavior/ov_executable_network/properties.cpp +++ b/src/plugins/intel_cpu/tests/functional/behavior/ov_executable_network/properties.cpp @@ -116,7 +116,8 @@ TEST_F(OVClassConfigTestCPU, smoke_CpuExecNetworkCheckModelStreamsHasHigherPrior int32_t streams = ov::get_number_of_cpu_cores(); // latency hint should apply lower number of streams int32_t value = 0; - std::cout << "smoke_CpuExecNetworkCheckModelStreamsHasHigherPriorityThanLatencyHint...2" << std::endl; + std::cout << "smoke_CpuExecNetworkCheckModelStreamsHasHigherPriorityThanLatencyHint...2 - streams = " << streams + << std::endl; ASSERT_NO_THROW(ie.set_property(deviceName, ov::hint::performance_mode(ov::hint::PerformanceMode::LATENCY))); std::cout << "smoke_CpuExecNetworkCheckModelStreamsHasHigherPriorityThanLatencyHint...3" << std::endl; ov::AnyMap config;