Skip to content

Commit

Permalink
fix: apply code review suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
headlessNode committed Oct 1, 2024
1 parent 6a153f0 commit fdc0f04
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/blas/ext/base/cfill/lib/ndarray.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ var imagf = require( '@stdlib/complex/float32/imag' );

// VARIABLES //

var M = 16;
var M = 8;


// MAIN //
Expand Down Expand Up @@ -120,7 +120,7 @@ function cfill( N, alpha, x, strideX, offsetX ) {
view[ ix+13 ] = im;
view[ ix+14 ] = re;
view[ ix+15 ] = im;
ix += M;
ix += M * 2;
}
return x;
}
Expand Down
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/blas/ext/base/zfill/lib/ndarray.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ var imag = require( '@stdlib/complex/float64/imag' );

// VARIABLES //

var M = 16;
var M = 8;


// MAIN //
Expand Down Expand Up @@ -120,7 +120,7 @@ function zfill( N, alpha, x, strideX, offsetX ) {
view[ ix+13 ] = im;
view[ ix+14 ] = re;
view[ ix+15 ] = im;
ix += M;
ix += M * 2;
}
return x;
}
Expand Down

0 comments on commit fdc0f04

Please sign in to comment.