Skip to content

Commit e6032e9

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

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

lib/node_modules/@stdlib/blas/base/dgemv/src/dgemv_ndarray.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -80,14 +80,14 @@ void API_SUFFIX(c_dgemv_ndarray)( const CBLAS_TRANSPOSE trans, const CBLAS_INT M
8080
}
8181

8282
// Y = beta * Y
83-
if ( beta != 1.0f ) {
84-
if ( beta == 0.0f ) {
85-
stdlib_strided_dfill_ndarray( ylen, 0.0f, Y, strideY, offsetY );
83+
if ( beta != 1.0 ) {
84+
if ( beta == 0.0 ) {
85+
stdlib_strided_dfill_ndarray( ylen, 0.0, Y, strideY, offsetY );
8686
} else {
8787
c_dscal_ndarray( ylen, beta, Y, strideY, offsetY );
8888
}
8989
}
90-
if ( alpha == 0.0f ) {
90+
if ( alpha == 0.0 ) {
9191
return;
9292
}
9393
// Form: Y = α*A*X + Y
@@ -110,7 +110,7 @@ void API_SUFFIX(c_dgemv_ndarray)( const CBLAS_TRANSPOSE trans, const CBLAS_INT M
110110
// ( !isrm && trans !== 'no-transpose' ) || ( isrm && trans === 'no-transpose' )
111111
iy1 = offsetY;
112112
for ( i1 = 0; i1 < ylen; i1++ ) {
113-
tmp = 0.0f;
113+
tmp = 0.0;
114114
ix1 = offsetX;
115115
oa = offsetA + sa1 * i1;
116116
for ( i0 = 0; i0 < xlen; i0++ ) {

0 commit comments

Comments
 (0)