Skip to content

Commit ce571b1

Browse files
authored
chore: minor changes
Signed-off-by: Shabareesh Shetty <[email protected]>
1 parent 9c4b307 commit ce571b1

File tree

1 file changed

+1
-2
lines changed
  • lib/node_modules/@stdlib/blas/base/dsyr/src

1 file changed

+1
-2
lines changed

lib/node_modules/@stdlib/blas/base/dsyr/src/dsyr.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
#include "stdlib/blas/base/dsyr.h"
2020
#include "stdlib/blas/base/shared.h"
2121
#include "stdlib/strided/base/stride2offset.h"
22-
#include "stdlib/ndarray/base/assert/is_row_major.h"
2322

2423
/**
2524
* Performs the symmetric rank 1 operation `A = α*x*x^T + A`.
@@ -48,7 +47,7 @@ void API_SUFFIX(c_dsyr)( const CBLAS_LAYOUT order, const CBLAS_UPLO uplo, const
4847
sa1 = LDA;
4948
sa2 = 1;
5049
}
51-
ox = STDLIB_BLAS_BASE_STRIDE2OFFSET( N, strideX );
50+
ox = stdlib_strided_stride2offset( N, strideX );
5251
API_SUFFIX(c_dsyr_ndarray)( uplo, N, alpha, X, strideX, ox, A, sa1, sa2, 0 );
5352
return;
5453
}

0 commit comments

Comments
 (0)