Skip to content

Commit aecaa92

Browse files
authored
chore: minor clean-up
Signed-off-by: Shabareesh Shetty <[email protected]>
1 parent 51b7a4b commit aecaa92

File tree

1 file changed

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

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/blas/base/dsyr/include/stdlib/blas/base/dsyr_cblas.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ void API_SUFFIX(c_dsyr)( const CBLAS_LAYOUT order, const CBLAS_UPLO uplo, const
3939
if ( sx < 0 ) {
4040
sx = -sx;
4141
}
42-
API_SUFFIX(cblas_dsyr)( order, uplo, N, alpha, X, sx, AP );
42+
API_SUFFIX(cblas_dsyr)( order, uplo, N, alpha, X, sx, A, LDA );
4343
}
4444

4545
/**
@@ -65,5 +65,5 @@ void API_SUFFIX(c_dsyr_ndarray)( const CBLAS_UPLO uplo, const CBLAS_INT N, const
6565
if ( sx < 0 ) {
6666
sx = -sx;
6767
}
68-
API_SUFFIX(cblas_dsyr)( uplo, N, alpha, X, sx, offsetX, A, strideA1, strideA2, offsetA );
68+
API_SUFFIX(cblas_dsyr)( order, uplo, N, alpha, X, sx, A, LDA );
6969
}

0 commit comments

Comments
 (0)