Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions lib/node_modules/@stdlib/ndarray/base/flipud/benchmark/benchmark.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

// MAIN //

bench( pkg+'::1d,base', function benchmark( b ) {

Check warning on line 33 in lib/node_modules/@stdlib/ndarray/base/flipud/benchmark/benchmark.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Use `@stdlib/string/format` instead of string concatenation for benchmark descriptions
var values;
var v;
var i;
Expand Down Expand Up @@ -58,12 +58,12 @@
b.end();
});

bench( pkg+'::1d,non-base', function benchmark( b ) {

Check warning on line 61 in lib/node_modules/@stdlib/ndarray/base/flipud/benchmark/benchmark.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Use `@stdlib/string/format` instead of string concatenation for benchmark descriptions
var values;
var v;
var i;

/* eslint-disable object-curly-newline */
/* eslint-disable object-curly-newline, stdlib/line-closing-bracket-spacing */

values = [
empty( [ 2 ], { 'dtype': 'float64' } ),
Expand All @@ -73,7 +73,7 @@
empty( [ 2 ], { 'dtype': 'generic' } )
];

/* eslint-enable object-curly-newline */
/* eslint-enable object-curly-newline, stdlib/line-closing-bracket-spacing */

b.tic();
for ( i = 0; i < b.iterations; i++ ) {
Expand All @@ -90,7 +90,7 @@
b.end();
});

bench( pkg+'::2d,base', function benchmark( b ) {

Check warning on line 93 in lib/node_modules/@stdlib/ndarray/base/flipud/benchmark/benchmark.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Use `@stdlib/string/format` instead of string concatenation for benchmark descriptions
var values;
var v;
var i;
Expand Down Expand Up @@ -118,12 +118,12 @@
b.end();
});

bench( pkg+'::2d,non-base', function benchmark( b ) {

Check warning on line 121 in lib/node_modules/@stdlib/ndarray/base/flipud/benchmark/benchmark.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Use `@stdlib/string/format` instead of string concatenation for benchmark descriptions
var values;
var v;
var i;

/* eslint-disable object-curly-newline */
/* eslint-disable object-curly-newline, stdlib/line-closing-bracket-spacing */

values = [
empty( [ 2, 2 ], { 'dtype': 'float64' } ),
Expand All @@ -133,7 +133,7 @@
empty( [ 2, 2 ], { 'dtype': 'generic' } )
];

/* eslint-enable object-curly-newline */
/* eslint-enable object-curly-newline, stdlib/line-closing-bracket-spacing */

b.tic();
for ( i = 0; i < b.iterations; i++ ) {
Expand All @@ -150,7 +150,7 @@
b.end();
});

bench( pkg+'::3d,base', function benchmark( b ) {

Check warning on line 153 in lib/node_modules/@stdlib/ndarray/base/flipud/benchmark/benchmark.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Use `@stdlib/string/format` instead of string concatenation for benchmark descriptions
var values;
var v;
var i;
Expand Down Expand Up @@ -178,12 +178,12 @@
b.end();
});

bench( pkg+'::3d,non-base', function benchmark( b ) {

Check warning on line 181 in lib/node_modules/@stdlib/ndarray/base/flipud/benchmark/benchmark.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Use `@stdlib/string/format` instead of string concatenation for benchmark descriptions
var values;
var v;
var i;

/* eslint-disable object-curly-newline */
/* eslint-disable object-curly-newline, stdlib/line-closing-bracket-spacing */

values = [
empty( [ 2, 2, 2 ], { 'dtype': 'float64' } ),
Expand All @@ -193,7 +193,7 @@
empty( [ 2, 2, 2 ], { 'dtype': 'generic' } )
];

/* eslint-enable object-curly-newline */
/* eslint-enable object-curly-newline, stdlib/line-closing-bracket-spacing */

b.tic();
for ( i = 0; i < b.iterations; i++ ) {
Expand All @@ -210,7 +210,7 @@
b.end();
});

bench( pkg+'::4d,base', function benchmark( b ) {

Check warning on line 213 in lib/node_modules/@stdlib/ndarray/base/flipud/benchmark/benchmark.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Use `@stdlib/string/format` instead of string concatenation for benchmark descriptions
var values;
var v;
var i;
Expand Down Expand Up @@ -238,12 +238,12 @@
b.end();
});

bench( pkg+'::4d,non-base', function benchmark( b ) {

Check warning on line 241 in lib/node_modules/@stdlib/ndarray/base/flipud/benchmark/benchmark.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Use `@stdlib/string/format` instead of string concatenation for benchmark descriptions
var values;
var v;
var i;

/* eslint-disable object-curly-newline */
/* eslint-disable object-curly-newline, stdlib/line-closing-bracket-spacing */

values = [
empty( [ 2, 2, 2, 2 ], { 'dtype': 'float64' } ),
Expand All @@ -253,7 +253,7 @@
empty( [ 2, 2, 2, 2 ], { 'dtype': 'generic' } )
];

/* eslint-enable object-curly-newline */
/* eslint-enable object-curly-newline, stdlib/line-closing-bracket-spacing */

b.tic();
for ( i = 0; i < b.iterations; i++ ) {
Expand All @@ -270,7 +270,7 @@
b.end();
});

bench( pkg+'::5d,base', function benchmark( b ) {

Check warning on line 273 in lib/node_modules/@stdlib/ndarray/base/flipud/benchmark/benchmark.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Use `@stdlib/string/format` instead of string concatenation for benchmark descriptions
var values;
var v;
var i;
Expand Down Expand Up @@ -298,12 +298,12 @@
b.end();
});

bench( pkg+'::5d,non-base', function benchmark( b ) {

Check warning on line 301 in lib/node_modules/@stdlib/ndarray/base/flipud/benchmark/benchmark.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Use `@stdlib/string/format` instead of string concatenation for benchmark descriptions
var values;
var v;
var i;

/* eslint-disable object-curly-newline */
/* eslint-disable object-curly-newline, stdlib/line-closing-bracket-spacing */

values = [
empty( [ 2, 2, 2, 2, 2 ], { 'dtype': 'float64' } ),
Expand All @@ -313,7 +313,7 @@
empty( [ 2, 2, 2, 2, 2 ], { 'dtype': 'generic' } )
];

/* eslint-enable object-curly-newline */
/* eslint-enable object-curly-newline, stdlib/line-closing-bracket-spacing */

b.tic();
for ( i = 0; i < b.iterations; i++ ) {
Expand Down
Loading