Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CPU] Fix issues about incorrect use of rsp offset and register alias #161

Open
wants to merge 3 commits into
base: v2.7_for_ie_master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
[CPU] Fix incorrect offset to rsp
xuchen-intel committed Nov 8, 2022
commit de8e2bb7362271683743d580ca425a35aa28ff54
2 changes: 1 addition & 1 deletion src/cpu/x64/jit_avx512_core_bf16_dw_conv_kernel.cpp
Original file line number Diff line number Diff line change
@@ -467,7 +467,7 @@ void jit_avx512_dw_conv_fwd_kernel_bf16::compute_loop(
pop(reg_output);
pop(reg_input);
pop(reg_kernel);
base_post_ops_data_offset -= reg64_size;
base_post_ops_data_offset -= 3 * reg64_size;

} else {
compute(ur_ch_blocks, masked_ch_block_tail);