From 1710f24802d2fa9748f22a19a1cd15295f5ab7b6 Mon Sep 17 00:00:00 2001 From: Alexey Smirnov Date: Wed, 15 Jan 2025 18:03:38 +0000 Subject: [PATCH] Clang --- src/plugins/intel_npu/src/plugin/npuw/compiled_model.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/plugins/intel_npu/src/plugin/npuw/compiled_model.cpp b/src/plugins/intel_npu/src/plugin/npuw/compiled_model.cpp index d3944765aeacc0..f0d9950c2e3520 100644 --- a/src/plugins/intel_npu/src/plugin/npuw/compiled_model.cpp +++ b/src/plugins/intel_npu/src/plugin/npuw/compiled_model.cpp @@ -143,8 +143,7 @@ std::shared_ptr ov::npuw::ICompiledModel::create( LOG_INFO("ov::npuw::CompiledModel will be created."); // CACHE_DIR isn't supported with NPU_USE_NPUW if (properties.count(ov::cache_dir.name())) { - OPENVINO_THROW( - "Option 'CACHE_DIR' is not supported with configuration: NPU_USE_NPUW : YES, NPUW_LLM : NO"); + OPENVINO_THROW("Option 'CACHE_DIR' is not supported with configuration: NPU_USE_NPUW : YES, NPUW_LLM : NO"); } pre_load_transform(model, properties); compiled_model = std::make_shared(model, plugin, properties);