Skip to content

Commit 7aa925b

Browse files
committed
Auto-generated commit
1 parent 776622d commit 7aa925b

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -794,6 +794,7 @@ A total of 44 issues were closed in this release:
794794

795795
<details>
796796

797+
- [`d2332f0`](https://github.com/stdlib-js/stdlib/commit/d2332f05feb48661bca9ab0058834ef29f396d23) - **bench:** refactor to use string interpolation in `ndarray/slice` [(#11075)](https://github.com/stdlib-js/stdlib/pull/11075) _(by Partha Das)_
797798
- [`3ea6462`](https://github.com/stdlib-js/stdlib/commit/3ea64620014043e0a7404296510739c3a4a3a08d) - **bench:** refactor to use string interpolation in `ndarray/includes` [(#11077)](https://github.com/stdlib-js/stdlib/pull/11077) _(by Partha Das)_
798799
- [`826071a`](https://github.com/stdlib-js/stdlib/commit/826071af85401abe59ef8c6eb687224b4e374ce8) - **bench:** fix missing arguments _(by Athan Reines)_
799800
- [`b1b1a64`](https://github.com/stdlib-js/stdlib/commit/b1b1a64876a554c2d77c9f4fbc96daa5e0d3f90e) - **docs:** update example _(by Athan Reines)_

slice/benchmark/benchmark.call_signatures.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,14 @@ var bench = require( '@stdlib/bench' );
2424
var isndarrayLike = require( '@stdlib/assert/is-ndarray-like' );
2525
var MultiSlice = require( '@stdlib/slice/multi' );
2626
var baseEmpty = require( './../../base/empty' );
27+
var format = require( '@stdlib/string/format' );
2728
var pkg = require( './../package.json' ).name;
2829
var slice = require( './../lib' );
2930

3031

3132
// MAIN //
3233

33-
bench( pkg+'::2d,base,multislice', function benchmark( b ) {
34+
bench( format( '%s::2d,base,multislice', pkg ), function benchmark( b ) {
3435
var values;
3536
var v;
3637
var s;
@@ -60,7 +61,7 @@ bench( pkg+'::2d,base,multislice', function benchmark( b ) {
6061
b.end();
6162
});
6263

63-
bench( pkg+'::2d,base,separate_arguments', function benchmark( b ) {
64+
bench( format( '%s::2d,base,separate_arguments', pkg ), function benchmark( b ) {
6465
var values;
6566
var v;
6667
var i;
@@ -88,7 +89,7 @@ bench( pkg+'::2d,base,separate_arguments', function benchmark( b ) {
8889
b.end();
8990
});
9091

91-
bench( pkg+'::2d,base,array', function benchmark( b ) {
92+
bench( format( '%s::2d,base,array', pkg ), function benchmark( b ) {
9293
var values;
9394
var v;
9495
var i;

0 commit comments

Comments
 (0)