Skip to content

Commit 9cfc2a2

Browse files
committed
Auto-generated commit
1 parent 2dbad3c commit 9cfc2a2

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,6 +256,7 @@ A total of 33 issues were closed in this release:
256256

257257
<details>
258258

259+
- [`dc36299`](https://github.com/stdlib-js/stdlib/commit/dc36299e2dbbda5ab1482e5777334567529e5459) - **bench:** refactor to use string interpolation in `array/base/accessor-setter` [(#8662)](https://github.com/stdlib-js/stdlib/pull/8662) _(by Rohit R Bhat)_
259260
- [`ea0d5a6`](https://github.com/stdlib-js/stdlib/commit/ea0d5a623b80a5963e7079cd58cf29e7b01b5d57) - **bench:** refactor to use string interpolation in `array/base/any-is-entry` [(#8663)](https://github.com/stdlib-js/stdlib/pull/8663) _(by Aman Singh)_
260261
- [`565c8eb`](https://github.com/stdlib-js/stdlib/commit/565c8eb009e4aff052e40dfe1a282d3c9936cfac) - **bench:** refactor to use string interpolation in `array/base/any-has-property` [(#8660)](https://github.com/stdlib-js/stdlib/pull/8660) _(by Aman Singh)_
261262
- [`f20a4e4`](https://github.com/stdlib-js/stdlib/commit/f20a4e40425bc0e8eb292cca68453950d6df89d6) - **bench:** refactor to use string interpolation in `array/base/any-has-own-property` [(#8653)](https://github.com/stdlib-js/stdlib/pull/8653) _(by Aman Singh)_
@@ -626,7 +627,7 @@ A total of 33 issues were closed in this release:
626627

627628
### Contributors
628629

629-
A total of 21 people contributed to this release. Thank you to the following contributors:
630+
A total of 22 people contributed to this release. Thank you to the following contributors:
630631

631632
- Aayush Khanna
632633
- Abhijit Raut
@@ -645,6 +646,7 @@ A total of 21 people contributed to this release. Thank you to the following con
645646
- Nakul Krishnakumar
646647
- Neeraj Pathak
647648
- Philipp Burckhardt
649+
- Rohit R Bhat
648650
- Rylan Yang
649651
- Sachin Raj
650652
- Shabareesh Shetty

base/accessor-setter/benchmark/benchmark.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ var imag = require( '@stdlib/complex/float64/imag' );
3535
var realf = require( '@stdlib/complex/float32/real' );
3636
var imagf = require( '@stdlib/complex/float32/imag' );
3737
var dtype = require( './../../../dtype' );
38+
var format = require( '@stdlib/string/format' );
3839
var pkg = require( './../package.json' ).name;
3940
var setter = require( './../lib' );
4041

@@ -72,7 +73,7 @@ bench( pkg, function benchmark( b ) {
7273
b.end();
7374
});
7475

75-
bench( pkg+':dtype=complex128', function benchmark( b ) {
76+
bench( format( '%s:dtype=complex128', pkg ), function benchmark( b ) {
7677
var values;
7778
var arr;
7879
var buf;
@@ -108,7 +109,7 @@ bench( pkg+':dtype=complex128', function benchmark( b ) {
108109
b.end();
109110
});
110111

111-
bench( pkg+':dtype=complex64', function benchmark( b ) {
112+
bench( format( '%s:dtype=complex64', pkg ), function benchmark( b ) {
112113
var values;
113114
var arr;
114115
var buf;

0 commit comments

Comments
 (0)