Skip to content

Commit c506476

Browse files
committed
fix: Incorrect function call to cblas in blas/base/ddot
1 parent 0c31eaf commit c506476

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/node_modules/@stdlib/blas/base/ddot/src/ddot_cblas.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,5 @@ double API_SUFFIX(c_ddot)( const CBLAS_INT N, const double *X, const CBLAS_INT s
5050
double API_SUFFIX(c_ddot_ndarray)( const CBLAS_INT N, const double *X, const CBLAS_INT strideX, const CBLAS_INT offsetX, const double *Y, const CBLAS_INT strideY, const CBLAS_INT offsetY ) {
5151
X += stdlib_strided_min_view_buffer_index( N, strideX, offsetX ); // adjust array pointer
5252
Y += stdlib_strided_min_view_buffer_index( N, strideY, offsetY ); // adjust array pointer
53-
return API_SUFFIX(cblas_ddot_ndarray)( N, X, strideX, Y, strideY );
53+
return API_SUFFIX(cblas_ddot)( N, X, strideX, Y, strideY );
5454
}

0 commit comments

Comments
 (0)