Skip to content

Commit

Permalink
commect fix: 1 byte movement
Browse files Browse the repository at this point in the history
  • Loading branch information
eshoguli committed Nov 22, 2023
1 parent d398930 commit c37e3be
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/plugins/intel_cpu/src/nodes/eltwise.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -767,11 +767,7 @@ struct jit_uni_eltwise_generic : public jit_uni_eltwise_kernel, public jit_gener
break;
case 1:
mov(reg_tmp_8, op);
if (src_prc.is_signed()) {
movsx(reg_tmp_32, reg_tmp_8);
} else {
movzx(reg_tmp_32, reg_tmp_8);
}
movzx(reg_tmp_32, reg_tmp_8);
uni_vmovd(xmm_src, reg_tmp_32);
break;
default:
Expand Down

0 comments on commit c37e3be

Please sign in to comment.