Skip to content

Commit 7f6de04

Browse files
committed
bench: update benchmark for ndarray
1 parent e1fc4c2 commit 7f6de04

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/blas/base/ssymv/benchmark/benchmark.ndarray.js

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

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

0 commit comments

Comments
 (0)