Skip to content

Commit

Permalink
[GPU] fix cpplint
Browse files Browse the repository at this point in the history
Signed-off-by: Min, Byungil <[email protected]>
  • Loading branch information
byungilm committed Dec 13, 2024
1 parent 33e33de commit 1323729
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down

0 comments on commit 1323729

Please sign in to comment.