Skip to content

Commit 225984e

Browse files
author
Fomenko, Evarist M
committed
cpu: conv: x64: use proper offset when reading args from stack
This is a fixup for 778121a: cpu: conv: x64: Implement bwd_w algorithm targeting nxc data formats
1 parent 577365c commit 225984e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cpu/x64/jit_avx512_common_conv_kernel.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5193,7 +5193,7 @@ void jit_avx512_common_conv_bwd_weights_kernel_f32::generate_microkernel() {
51935193
#ifdef _WIN32
51945194
// Must be a scratch register since load is before preamble
51955195
reg64_t reg_owb = rax;
5196-
mov(reg_owb, ptr[rsp + 8]);
5196+
mov(reg_owb, ptr[get_stack_params_address(false)]);
51975197
#else
51985198
reg64_t reg_owb = abi_param5;
51995199
#endif

0 commit comments

Comments
 (0)