Skip to content

Commit 5faf52b

Browse files
bench: refactor to use string interpolation in blas/base/srotg
PR-URL: #10453 Reviewed-by: Philipp Burckhardt <pburckhardt@outlook.com>
1 parent 78c066a commit 5faf52b

File tree

1 file changed

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

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ var bench = require( '@stdlib/bench' );
2424
var discreteUniform = require( '@stdlib/random/array/discrete-uniform' );
2525
var isnanf = require( '@stdlib/math/base/assert/is-nanf' );
2626
var Float32Array = require( '@stdlib/array/float32' );
27+
var format = require( '@stdlib/string/format' );
2728
var pkg = require( './../package.json' ).name;
2829
var srotg = require( './../lib' );
2930

@@ -61,7 +62,7 @@ bench( pkg, function benchmark( b ) {
6162
b.end();
6263
});
6364

64-
bench( pkg+':assign', function benchmark( b ) {
65+
bench( format( '%s:assign', pkg ), function benchmark( b ) {
6566
var out;
6667
var x;
6768
var y;

0 commit comments

Comments
 (0)