We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
blas/base/ddot
1 parent 158060f commit 0e41789Copy full SHA for 0e41789
1 file changed
lib/node_modules/@stdlib/blas/base/ddot/src/ddot_cblas.c
@@ -50,5 +50,5 @@ double API_SUFFIX(c_ddot)( const CBLAS_INT N, const double *X, const CBLAS_INT s
50
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 ) {
51
X += stdlib_strided_min_view_buffer_index( N, strideX, offsetX ); // adjust array pointer
52
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 );
+ return API_SUFFIX(cblas_ddot)( N, X, strideX, Y, strideY );
54
}
0 commit comments