Skip to content

Commit d0f0ecc

Browse files
committed
fix tile default value in device_desc
1 parent 0c35c46 commit d0f0ecc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/plugins/intel_npu/src/compiler_adapter/src/compiler_impl.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ VCLCompilerImpl::VCLCompilerImpl() : _logHandle(nullptr), _logger("VCLCompilerIm
390390
vcl_device_desc_t device_desc = {sizeof(vcl_device_desc_t),
391391
0x00,
392392
static_cast<uint16_t>(-1),
393-
static_cast<uint16_t>(-1)};
393+
static_cast<uint32_t>(-1)};
394394
THROW_ON_FAIL_FOR_VCL("vclCompilerCreate",
395395
vclCompilerCreate(&compilerDesc, &device_desc, &_compilerHandle, &_logHandle),
396396
nullptr);

0 commit comments

Comments
 (0)