Skip to content

Commit f65d213

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

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/node_modules/@stdlib/blas/base/sgemv/src/sgemv_ndarray.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
* @param y second input vector
4141
* @param strideY `y` stride length
4242
* @param offsetY starting index for `Y`
43-
* @return output value
43+
* @return output value
4444
*/
4545
void API_SUFFIX(c_sgemv_ndarray)( const CBLAS_TRANSPOSE trans, const CBLAS_INT M, const CBLAS_INT N, const float alpha, const float *A, const CBLAS_INT strideA1, const CBLAS_INT strideA2, const CBLAS_INT offsetA, const float *x, const CBLAS_INT strideX, const CBLAS_INT offsetX, const float beta, float *y, const CBLAS_INT strideY, const CBLAS_INT offsetY ) {
4646
CBLAS_INT isrm;
@@ -59,6 +59,7 @@ void API_SUFFIX(c_sgemv_ndarray)( const CBLAS_TRANSPOSE trans, const CBLAS_INT M
5959

6060
int64_t strides[] = { strideA1, strideA2 };
6161
isrm = stdlib_ndarray_is_row_major( 2, strides );
62+
6263
if ( M == 0 || N == 0 || ( alpha == 0.0f && beta == 1.0f ) ) {
6364
return;
6465
}

0 commit comments

Comments
 (0)