Skip to content

Commit a3b3a7f

Browse files
committed
Auto-generated commit
1 parent b692e51 commit a3b3a7f

6 files changed

Lines changed: 8 additions & 7 deletions

File tree

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGELOG.md

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

7-
## Unreleased (2026-07-19)
7+
## Unreleased (2026-08-01)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`22fe7a6`](https://github.com/stdlib-js/stdlib/commit/22fe7a64a77d8fecc54da41dac870f2249b0c731) - **bench:** update benchmarks to use decimal literals [(#13849)](https://github.com/stdlib-js/stdlib/pull/13849) _(by Karan Anand)_
1516
- [`2e03fe9`](https://github.com/stdlib-js/stdlib/commit/2e03fe9e548309edda7bf7c5c66c3f671a9e2daf) - **bench:** refactor to use dynamic memory allocation in `blas/ext/base/dapxsumkbn2` [(#10574)](https://github.com/stdlib-js/stdlib/pull/10574) _(by Prajjwal Bajpai)_
1617
- [`49a4c22`](https://github.com/stdlib-js/stdlib/commit/49a4c224154a4eb0337818c19353046705c9cea5) - **bench:** refactor to use string interpolation in `blas/ext/base/dapxsumkbn2` [(#10575)](https://github.com/stdlib-js/stdlib/pull/10575) _(by Prajjwal Bajpai)_
1718

@@ -25,8 +26,9 @@
2526

2627
### Contributors
2728

28-
A total of 1 person contributed to this release. Thank you to this contributor:
29+
A total of 2 people contributed to this release. Thank you to the following contributors:
2930

31+
- Karan Anand
3032
- Prajjwal Bajpai
3133

3234
</section>

benchmark/benchmark.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ var options = {
4646
* @returns {Function} benchmark function
4747
*/
4848
function createBenchmark( len ) {
49-
var x = uniform( len, -100, 100, options );
49+
var x = uniform( len, -100.0, 100.0, options );
5050
return benchmark;
5151

5252
/**

benchmark/benchmark.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ var options = {
5151
* @returns {Function} benchmark function
5252
*/
5353
function createBenchmark( len ) {
54-
var x = uniform( len, -100, 100, options );
54+
var x = uniform( len, -100.0, 100.0, options );
5555
return benchmark;
5656

5757
/**

benchmark/benchmark.ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ var options = {
4646
* @returns {Function} benchmark function
4747
*/
4848
function createBenchmark( len ) {
49-
var x = uniform( len, -100, 100, options );
49+
var x = uniform( len, -100.0, 100.0, options );
5050
return benchmark;
5151

5252
/**

benchmark/benchmark.ndarray.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ var options = {
5151
* @returns {Function} benchmark function
5252
*/
5353
function createBenchmark( len ) {
54-
var x = uniform( len, -100, 100, options );
54+
var x = uniform( len, -100.0, 100.0, options );
5555
return benchmark;
5656

5757
/**

0 commit comments

Comments
 (0)