Skip to content

Commit d510cbb

Browse files
authored
chore: add indentation
Signed-off-by: Shabareesh Shetty <[email protected]>
1 parent 3af15cc commit d510cbb

File tree

1 file changed

+4
-4
lines changed
  • lib/node_modules/@stdlib/blas/base/sger/lib

1 file changed

+4
-4
lines changed

lib/node_modules/@stdlib/blas/base/sger/lib/base.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,9 @@ function sger( M, N, alpha, x, strideX, offsetX, y, strideY, offsetY, A, strideA
8383
if ( y[ iy1 ] !== 0.0 ) {
8484
tmp = f32( alpha * y[ iy1 ] );
8585
ix1 = offsetX;
86-
oa = offsetA + (sa1*i1);
86+
oa = offsetA + ( sa1 * i1 );
8787
for ( i0 = 0; i0 < M; i0++ ) {
88-
A[ oa+(sa0*i0) ] += f32( x[ ix1 ] * tmp );
88+
A[ oa + ( sa0 * i0 ) ] += f32( x[ ix1 ] * tmp );
8989
ix1 += strideX;
9090
}
9191
}
@@ -98,9 +98,9 @@ function sger( M, N, alpha, x, strideX, offsetX, y, strideY, offsetY, A, strideA
9898
if ( x[ ix1 ] !== 0.0 ) {
9999
tmp = f32( alpha * x[ ix1 ] );
100100
iy1 = offsetY;
101-
oa = offsetA + (sa1*i1);
101+
oa = offsetA + ( sa1 * i1 );
102102
for ( i0 = 0; i0 < N; i0++ ) {
103-
A[ oa+(sa0*i0) ] += f32( y[ iy1 ] * tmp );
103+
A[ oa + ( sa0 * i0 ) ] += f32( y[ iy1 ] * tmp );
104104
iy1 += strideY;
105105
}
106106
}

0 commit comments

Comments
 (0)