Skip to content

Commit 2a5974c

Browse files
authored
chore: minor clean-up
Signed-off-by: Shabareesh Shetty <[email protected]>
1 parent 99fff2d commit 2a5974c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/blas/base/sspr/src/sspr_cblas.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ void API_SUFFIX(c_sspr)( const CBLAS_LAYOUT order, const CBLAS_UPLO uplo, const
5353
* @param strideAP `AP` stride length
5454
* @param offsetAP starting index for `AP`
5555
*/
56-
void API_SUFFIX(c_sspr)( const CBLAS_LAYOUT order, const CBLAS_UPLO uplo, const CBLAS_INT N, const float alpha, const float *X, const CBLAS_INT strideX, const CBLAS_INT offsetX, float *AP, const CBLAS_INT strideAP, const CBLAS_INT offsetAP ) {
56+
void API_SUFFIX(c_sspr_ndarray)( const CBLAS_LAYOUT order, const CBLAS_UPLO uplo, const CBLAS_INT N, const float alpha, const float *X, const CBLAS_INT strideX, const CBLAS_INT offsetX, float *AP, const CBLAS_INT strideAP, const CBLAS_INT offsetAP ) {
5757
CBLAS_INT sx = strideX;
5858
X += stdlib_strided_min_view_buffer_index( N, strideX, offsetX ); // adjust array pointer
5959
AP += stdlib_strided_min_view_buffer_index( N, strideAP, offsetAP ); // adjust array pointer

0 commit comments

Comments
 (0)