Browse Source

sbgemm: cooperlake: fix bug in m64n12

tags/v0.3.18
Wangyang Guo 4 years ago
parent
commit
cece3541ab
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      kernel/x86_64/sbgemm_kernel_16x4_cooperlake.c

+ 1
- 2
kernel/x86_64/sbgemm_kernel_16x4_cooperlake.c View File

@@ -306,9 +306,8 @@ int CNAME (BLASLONG m, BLASLONG n, BLASLONG k, FLOAT alpha, IFLOAT * A, IFLOAT *
STORE_4X(0, 0, 1); STORE_4X(1, 0, 1);
STORE_4X(0, 0, 2); STORE_4X(1, 0, 2);
ptr_c += 16 * 2;
}
if (m > 31) {
ptr_a0 = ptr_a1;
ptr_a1 = ptr_a0 + 16 * k;
}
for (; m_count > 15; m_count -= 16) {
ptr_b0 = ptr_b00;


Loading…
Cancel
Save