Skip to content

Commit af5397f

Browse files
committed
Auto-generated commit
1 parent b8cc063 commit af5397f

File tree

6 files changed

+23
-10
lines changed

6 files changed

+23
-10
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,3 +188,7 @@ jsconfig.json
188188
# Other editor files #
189189
######################
190190
.idea/
191+
192+
# Cursor #
193+
##########
194+
.cursorignore

CHANGELOG.md

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

7-
## Unreleased (2025-02-09)
7+
## Unreleased (2025-02-18)
88

99
<section class="features">
1010

@@ -20,9 +20,9 @@
2020

2121
### Closed Issues
2222

23-
This release closes the following issue:
23+
A total of 2 issues were closed in this release:
2424

25-
[#3745](https://github.com/stdlib-js/stdlib/issues/3745)
25+
[#3745](https://github.com/stdlib-js/stdlib/issues/3745), [#4978](https://github.com/stdlib-js/stdlib/issues/4978)
2626

2727
</section>
2828

@@ -34,6 +34,7 @@ This release closes the following issue:
3434

3535
<details>
3636

37+
- [`0d255bc`](https://github.com/stdlib-js/stdlib/commit/0d255bc39e0a122554fbc972be6c0973abb2c48a) - **bench:** refactor random number generation in JS benchmarks for `stats/base/dists/logistic` [(#5139)](https://github.com/stdlib-js/stdlib/pull/5139) _(by GK Bishnoi, Gopi Kishan)_
3738
- [`e61b1de`](https://github.com/stdlib-js/stdlib/commit/e61b1dee3334bacf30d213de5b5f1c7868c0753b) - **docs:** clean-up of C docstrings _(by Philipp Burckhardt)_
3839
- [`5a6efed`](https://github.com/stdlib-js/stdlib/commit/5a6efed4b52bece2bbcef65d8b19dcfaa168ff78) - **refactor:** precompute constant _(by Philipp Burckhardt)_
3940
- [`03954e1`](https://github.com/stdlib-js/stdlib/commit/03954e125b6cc761a5456e51c909ab09b18d15ee) - **feat:** add C implementation for `stats/base/dists/logistic/stdev` [(#4189)](https://github.com/stdlib-js/stdlib/pull/4189) _(by Vivek Maurya, Philipp Burckhardt, stdlib-bot)_
@@ -49,8 +50,10 @@ This release closes the following issue:
4950

5051
### Contributors
5152

52-
A total of 2 people contributed to this release. Thank you to the following contributors:
53+
A total of 4 people contributed to this release. Thank you to the following contributors:
5354

55+
- GK Bishnoi
56+
- Gopi Kishan
5457
- Philipp Burckhardt
5558
- Vivek Maurya
5659

CONTRIBUTORS

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,12 @@ Dominik Moritz <[email protected]>
3535
Dorrin Sotoudeh <[email protected]>
3636
EuniceSim142 <[email protected]>
3737
Frank Kovacs <[email protected]>
38+
GK Bishnoi <[email protected]>
39+
3840
Golden Kumar <[email protected]>
3941
Gunj Joshi <[email protected]>
4042
Gururaj Gurram <[email protected]>
43+
4144
4245
Harshita Kalani <[email protected]>
4346
Hridyanshu <[email protected]>
@@ -101,6 +104,7 @@ Sai Srikar Dumpeti <[email protected]>
101104
Sarthak Paandey <[email protected]>
102105
Saurabh Singh <[email protected]>
103106
Seyyed Parsa Neshaei <[email protected]>
107+
Shabareesh Shetty <[email protected]>
104108
Shashank Shekhar Singh <[email protected]>
105109
Shivam Ahir <[email protected]>
106110
Shraddheya Shendre <[email protected]>
@@ -125,6 +129,7 @@ Vivek Maurya <[email protected]>
125129
Xiaochuan Ye <[email protected]>
126130
Yaswanth Kosuru <[email protected]>
127131
Yernar Yergaziyev <[email protected]>
132+
Yuvi Mittal <[email protected]>
128133
ekambains <[email protected]>
129134
olenkabilonizhka <[email protected]>
130135
pranav-1720 <[email protected]>

benchmark/benchmark.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
// MODULES //
2222

2323
var bench = require( '@stdlib/bench-harness' );
24-
var randu = require( '@stdlib/random-base-randu' );
24+
var uniform = require( '@stdlib/random-base-uniform' );
2525
var Float64Array = require( '@stdlib/array-float64' );
2626
var isnan = require( '@stdlib/math-base-assert-is-nan' );
2727
var EPS = require( '@stdlib/constants-float64-eps' );
@@ -42,8 +42,8 @@ bench( pkg, function benchmark( b ) {
4242
mu = new Float64Array( len );
4343
s = new Float64Array( len );
4444
for ( i = 0; i < len; i++ ) {
45-
mu[ i ] = ( randu()*100.0 ) - 50.0;
46-
s[ i ] = ( randu()*20.0 ) + EPS;
45+
mu[ i ] = uniform( -50.0, 50.0 );
46+
s[ i ] = uniform( EPS, 20.0 );
4747
}
4848

4949
b.tic();

benchmark/benchmark.native.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
var resolve = require( 'path' ).resolve;
2424
var bench = require( '@stdlib/bench-harness' );
2525
var Float64Array = require( '@stdlib/array-float64' );
26-
var randu = require( '@stdlib/random-base-randu' );
26+
var uniform = require( '@stdlib/random-base-uniform' );
2727
var EPS = require( '@stdlib/constants-float64-eps' );
2828
var isnan = require( '@stdlib/math-base-assert-is-nan' );
2929
var tryRequire = require( '@stdlib/utils-try-require' );
@@ -51,8 +51,8 @@ bench( pkg+'::native', opts, function benchmark( b ) {
5151
mu = new Float64Array( len );
5252
s = new Float64Array( len );
5353
for ( i = 0; i < len; i++ ) {
54-
mu[ i ] = ( randu()*100.0 ) - 50.0;
55-
s[ i ] = ( randu()*20.0 ) + EPS;
54+
mu[ i ] = uniform( -50.0, 50.0 );
55+
s[ i ] = uniform( EPS, 20.0 );
5656
}
5757

5858
b.tic();

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@
5353
"@stdlib/constants-float64-pinf": "^0.2.2",
5454
"@stdlib/math-base-special-abs": "^0.2.2",
5555
"@stdlib/random-base-randu": "^0.2.1",
56+
"@stdlib/random-base-uniform": "^0.2.1",
5657
"@stdlib/utils-try-require": "^0.2.2",
5758
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
5859
"istanbul": "^0.4.1",

0 commit comments

Comments
 (0)