Skip to content

Commit 03a1a64

Browse files
committed
bench: resolve error
1 parent 6fc0eaf commit 03a1a64

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ function createBenchmark( N ) {
6363

6464
b.tic();
6565
for ( i = 0; i < b.iterations; i++ ) {
66-
z = sger( 'row-major', N, N, 1, 0, x, 1, y, 1, A, N );
66+
z = sger( 'row-major', N, N, 1.0, x, 1, y, 1, A, N );
6767
if ( isnanf( z[ i%z.length ] ) ) {
6868
b.fail( 'should not return NaN' );
6969
}

0 commit comments

Comments
 (0)