Skip to content

Commit 30d3f97

Browse files
authored
[oneMKL:BLAS] bug fix (#424)
1 parent caa8e7e commit 30d3f97

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

source/elements/oneMKL/source/domains/matrix-storage.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ Matrix Storage
262262

263263
::
264264

265-
for (i = 0; i < n; i++) {
265+
for (i = 0; i < m; i++) {
266266
k = kl – i;
267267
for (j = max(0, i – kl); j < min(n, i + ku + 1); j++) {
268268
a[(k + j) + i * lda] = matrix[j + i * ldm];

0 commit comments

Comments
 (0)