From 1323729aa2f61db4d5d8ba49d37c455a26bb56c5 Mon Sep 17 00:00:00 2001 From: "Min, Byungil" Date: Sat, 14 Dec 2024 07:34:01 +0900 Subject: [PATCH] [GPU] fix cpplint Signed-off-by: Min, Byungil --- .../kernels/fully_connected/fully_connected_kernel_bf_tiled.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/intel_gpu/src/kernel_selector/kernels/fully_connected/fully_connected_kernel_bf_tiled.cpp b/src/plugins/intel_gpu/src/kernel_selector/kernels/fully_connected/fully_connected_kernel_bf_tiled.cpp index b9e5b7172d6170..c5d2373cb97d0f 100644 --- a/src/plugins/intel_gpu/src/kernel_selector/kernels/fully_connected/fully_connected_kernel_bf_tiled.cpp +++ b/src/plugins/intel_gpu/src/kernel_selector/kernels/fully_connected/fully_connected_kernel_bf_tiled.cpp @@ -753,7 +753,7 @@ JitConstants FullyConnected_bf_tiled::GetJitConstants(const fully_connected_para jit.AddConstant(MakeJitConstant("DQ_DECOMPRESSION_SCALE_POST_OP", 1)); jit.AddConstant(MakeJitConstant("QUANTIZE_GROUP_SIZE", quantize_grp_size)); - if(is_per_token_dynamic_quantize(params) && quantize_grp_size == get_input_bf_size(params).second) + if (is_per_token_dynamic_quantize(params) && quantize_grp_size == get_input_bf_size(params).second) jit.AddConstant(MakeJitConstant("PER_TOKEN_SIZE_DYN_QUANTIZE", 1)); else jit.AddConstant(MakeJitConstant("PER_TOKEN_SIZE_DYN_QUANTIZE", 0));