Skip to content

Commit 6c2745e

Browse files
authored
chore: update isnanf to isnan
Signed-off-by: Shabareesh Shetty <[email protected]>
1 parent 19f60ae commit 6c2745e

File tree

1 file changed

+3
-3
lines changed
  • lib/node_modules/@stdlib/blas/base/dgbmv/benchmark

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
var bench = require( '@stdlib/bench' );
2424
var uniform = require( '@stdlib/random/array/uniform' );
25-
var isnanf = require( '@stdlib/math/base/assert/is-nanf' );
25+
var isnan = require( '@stdlib/math/base/assert/is-nan' );
2626
var pow = require( '@stdlib/math/base/special/pow' );
2727
var floor = require( '@stdlib/math/base/special/floor' );
2828
var pkg = require( './../package.json' ).name;
@@ -73,12 +73,12 @@ function createBenchmark( N ) {
7373
b.tic();
7474
for ( i = 0; i < b.iterations; i++ ) {
7575
z = dgbmv( 'row-major', 'no-transpose', N, N, 1, 1, 1.0, A, N, x, 1, 1.0, y, 1 );
76-
if ( isnanf( z[ i%z.length ] ) ) {
76+
if ( isnan( z[ i%z.length ] ) ) {
7777
b.fail( 'should not return NaN' );
7878
}
7979
}
8080
b.toc();
81-
if ( isnanf( z[ i%z.length ] ) ) {
81+
if ( isnan( z[ i%z.length ] ) ) {
8282
b.fail( 'should not return NaN' );
8383
}
8484
b.pass( 'benchmark finished' );

0 commit comments

Comments
 (0)