File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed
lib/node_modules/@stdlib/array/base/unary5d-by/benchmark Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -74,30 +74,30 @@ function createBenchmark( shape ) {
7474 function benchmark ( b ) {
7575 var i0 ;
7676 var i1 ;
77- var i2 ;
78- var i3 ;
79- var i4 ;
77+ var i2 ;
78+ var i3 ;
79+ var i4 ;
8080 var i ;
8181
8282 b . tic ( ) ;
8383 for ( i = 0 ; i < b . iterations ; i ++ ) {
8484 unary5dBy ( arrays , shape , identity , accessor ) ;
8585 i4 = i % shape [ 0 ] ;
8686 i3 = i % shape [ 1 ] ;
87- i2 = i % shape [ 2 ] ;
87+ i2 = i % shape [ 2 ] ;
8888 i1 = i % shape [ 3 ] ;
89- i0 = i % shape [ 4 ] ;
89+ i0 = i % shape [ 4 ] ;
9090 if ( isnan ( arrays [ 1 ] [ i4 ] [ i3 ] [ i2 ] [ i1 ] [ i0 ] ) ) {
9191 b . fail ( 'should not return NaN' ) ;
9292 }
9393 }
9494 b . toc ( ) ;
9595
96- i4 = i % shape [ 0 ] ;
97- i3 = i % shape [ 1 ] ;
98- i2 = i % shape [ 2 ] ;
99- i1 = i % shape [ 3 ] ;
100- i0 = i % shape [ 4 ] ;
96+ i4 = i % shape [ 0 ] ;
97+ i3 = i % shape [ 1 ] ;
98+ i2 = i % shape [ 2 ] ;
99+ i1 = i % shape [ 3 ] ;
100+ i0 = i % shape [ 4 ] ;
101101 if ( isnan ( arrays [ 1 ] [ i4 ] [ i3 ] [ i2 ] [ i1 ] [ i0 ] ) ) {
102102 b . fail ( 'should not return NaN' ) ;
103103 }
You can’t perform that action at this time.
0 commit comments