Skip to content

Commit 6afafb5

Browse files
committed
Auto-generated commit
1 parent b1c6774 commit 6afafb5

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2026-02-24)
7+
## Unreleased (2026-02-25)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`685691c`](https://github.com/stdlib-js/stdlib/commit/685691c6065af53a0527bcd690d1ade468f452df) - **chore:** minor clean-up _(by Philipp Burckhardt)_
1516
- [`0c1fea4`](https://github.com/stdlib-js/stdlib/commit/0c1fea42a94d1ec0d4ba8e9f29e411f0f3515041) - **bench:** update random value generation for `stats/base/dists/levy` [(#10449)](https://github.com/stdlib-js/stdlib/pull/10449) _(by Lokesh Ranjan, Philipp Burckhardt)_
1617
- [`bdd38d9`](https://github.com/stdlib-js/stdlib/commit/bdd38d971f4c0a24d43aca632ca5098cc0b90332) - **bench:** refactor to use string interpolation in `stats/base/dists/levy` [(#10444)](https://github.com/stdlib-js/stdlib/pull/10444) _(by Vishal Gaikwad)_
1718

benchmark/benchmark.native.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ var tryRequire = require( '@stdlib/utils-try-require' );
2626
var uniform = require( '@stdlib/random-array-uniform' );
2727
var isnan = require( '@stdlib/math-base-assert-is-nan' );
2828
var EPS = require( '@stdlib/constants-float64-eps' );
29+
var format = require( '@stdlib/string-format' );
2930
var pkg = require( './../package.json' ).name;
3031

3132

@@ -39,7 +40,7 @@ var opts = {
3940

4041
// MAIN //
4142

42-
bench( pkg, opts, function benchmark( b ) {
43+
bench( format( '%s::native', pkg ), opts, function benchmark( b ) {
4344
var scale;
4445
var opts;
4546
var mu;
@@ -52,7 +53,7 @@ bench( pkg, opts, function benchmark( b ) {
5253
};
5354
mu = uniform( 100, -50.0, 50.0, opts );
5455
x = uniform( 100, 50.0, 150.0, opts );
55-
scale = uniform( 100, EPS + 50.0, 150.0, opts );
56+
scale = uniform( 100, EPS, 20.0, opts );
5657

5758
b.tic();
5859
for ( i = 0; i < b.iterations; i++ ) {

0 commit comments

Comments
 (0)