From 68c12251459c3d864c42f3c175958cb7527a4cd9 Mon Sep 17 00:00:00 2001 From: Vladislav Golubev Date: Mon, 20 Jan 2025 18:04:45 +0100 Subject: [PATCH] Fix debug build --- src/plugins/intel_cpu/src/nodes/kernels/x64/mlp_kernel.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/intel_cpu/src/nodes/kernels/x64/mlp_kernel.cpp b/src/plugins/intel_cpu/src/nodes/kernels/x64/mlp_kernel.cpp index 16f41f7476249e..e0a55ba175e135 100644 --- a/src/plugins/intel_cpu/src/nodes/kernels/x64/mlp_kernel.cpp +++ b/src/plugins/intel_cpu/src/nodes/kernels/x64/mlp_kernel.cpp @@ -503,7 +503,7 @@ void MKernel::run(int M, // actual M } void MatrixDynQuantPerRow::quantize(size_t BM, ov::bfloat16* psrc, int src_stride) { - assert(BM <= M); + assert(static_cast(BM) <= M); parallel_nt_static(0, [&](const size_t ithr, const size_t nthr) { size_t start{0}, end{0}; splitter(BM, nthr, ithr, start, end); @@ -520,7 +520,7 @@ void MatrixDynQuantPerRow::quantize(size_t BM, ov::bfloat16* psrc, int src_strid } void MatrixDynQuantPerRow::quantize(size_t BM, ov::float16* psrc, int src_stride) { - assert(BM <= M); + assert(static_cast(BM) <= M); parallel_nt_static(0, [&](const size_t ithr, const size_t nthr) { size_t start{0}, end{0}; splitter(BM, nthr, ithr, start, end);