Skip to content

Commit 4801c6d

Browse files
authored
Update dgemm_kernel_4x8_haswell.S
1 parent 9440fa6 commit 4801c6d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

kernel/x86_64/dgemm_kernel_4x8_haswell.S

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1866,7 +1866,7 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
18661866
SAVE4x12
18671867

18681868
/* here for the prefetch of next b source block */
1869-
/* the increment should be proportional to the ratio of GEMM_Q/GEMM_P */
1869+
/* the increment should be proportional to GEMM_Q/GEMM_P */
18701870

18711871
salq $3, K
18721872
#ifdef WINDOWS_ABI /* GEMM_P == GEMM_Q * 4 */
@@ -2184,19 +2184,19 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
21842184
SAVE4x12
21852185

21862186
/* here for the prefetch of next b source block */
2187-
/* the increment should be proportional to the ratio of GEMM_Q/GEMM_P */
2187+
/* the increment should be proportional to GEMM_Q/GEMM_P */
21882188

21892189
salq $3, K
21902190
#ifdef WINDOWS_ABI /* GEMM_P == GEMM_Q * 4 */
21912191
prefetcht2 (B)
21922192
prefetcht2 (B, K, 8)
2193-
addq $64, B
2193+
addq $64, B /* increment */
21942194
#else /* GEMM_P == GEMM_Q * 2 under linux x86_64 */
21952195
prefetcht2 (B)
21962196
prefetcht2 (B, K, 8)
21972197
prefetcht2 64(B)
21982198
prefetcht2 64(B, K, 8)
2199-
addq $128, B
2199+
addq $128, B /* increment */
22002200
#endif
22012201
sarq $3, K
22022202

0 commit comments

Comments
 (0)