From 6527bce37bc9bd32115ef03e2b3aefb2cf420d30 Mon Sep 17 00:00:00 2001 From: "Liu, Dan1" Date: Wed, 4 Feb 2026 11:08:31 +0800 Subject: [PATCH] fix tile default value in device_desc --- .../intel_npu/src/compiler_adapter/src/compiler_impl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/intel_npu/src/compiler_adapter/src/compiler_impl.cpp b/src/plugins/intel_npu/src/compiler_adapter/src/compiler_impl.cpp index f1829565a21304..6bf736f9bff797 100644 --- a/src/plugins/intel_npu/src/compiler_adapter/src/compiler_impl.cpp +++ b/src/plugins/intel_npu/src/compiler_adapter/src/compiler_impl.cpp @@ -390,7 +390,7 @@ VCLCompilerImpl::VCLCompilerImpl() : _logHandle(nullptr), _logger("VCLCompilerIm vcl_device_desc_t device_desc = {sizeof(vcl_device_desc_t), 0x00, static_cast(-1), - static_cast(-1)}; + static_cast(-1)}; THROW_ON_FAIL_FOR_VCL("vclCompilerCreate", vclCompilerCreate(&compilerDesc, &device_desc, &_compilerHandle, &_logHandle), nullptr);