Skip to content

Commit 1164239

Browse files
committed
Auto-generated commit
1 parent 949cf2f commit 1164239

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

CHANGELOG.md

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

7-
## Unreleased (2025-05-08)
7+
## Unreleased (2025-05-09)
88

99
<section class="features">
1010

@@ -460,6 +460,7 @@ A total of 41 issues were closed in this release:
460460

461461
<details>
462462

463+
- [`7673be5`](https://github.com/stdlib-js/stdlib/commit/7673be52049ca31548ebfbd14ebc63147a69775d) - **bench:** fix `NaN` check to use imaginary part _(by Karan Anand)_
463464
- [`df5e6b8`](https://github.com/stdlib-js/stdlib/commit/df5e6b80f7fd70dd2d9f71b1ce3cae52ac52f11d) - **chore:** replace number strings with literals _(by Karan Anand)_
464465
- [`7b3095e`](https://github.com/stdlib-js/stdlib/commit/7b3095e7c61961a687074c559e4145fd0e4faf52) - **chore:** fix spacing in description _(by Athan Reines)_
465466
- [`3ef5f68`](https://github.com/stdlib-js/stdlib/commit/3ef5f684d03d3ecca3e7c2e68d1f02a383c8ba09) - **test:** fix description _(by Athan Reines)_

CONTRIBUTORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,7 @@ Utkarsh <http://utkarsh11105@gmail.com>
174174
Utkarsh Raj <rajutkarsh2505@gmail.com>
175175
UtkershBasnet <119008923+UtkershBasnet@users.noreply.github.com>
176176
Vaibhav Patel <98279986+noobCoderVP@users.noreply.github.com>
177+
Vara Rahul Rajana <123227543+rajanarahul93@users.noreply.github.com>
177178
Varad Gupta <varadgupta21@gmail.com>
178179
Vinit Pandit <106718914+MeastroZI@users.noreply.github.com>
179180
Vivek Maurya <vm8118134@gmail.com>

base/special/cflipsign/benchmark/benchmark.native.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ var uniform = require( '@stdlib/random/base/uniform' );
2626
var isnan = require( './../../../../base/assert/is-nan' );
2727
var Complex128 = require( '@stdlib/complex/float64/ctor' );
2828
var real = require( '@stdlib/complex/float64/real' );
29+
var imag = require( '@stdlib/complex/float64/imag' );
2930
var tryRequire = require( '@stdlib/utils/try-require' );
3031
var pkg = require( './../package.json' ).name;
3132

@@ -50,7 +51,6 @@ bench( pkg+'::native', opts, function benchmark( b ) {
5051
new Complex128( uniform( -500.0, 500.0 ), uniform( -500.0, 500.0 ) ),
5152
new Complex128( uniform( -500.0, 500.0 ), uniform( -500.0, 500.0 ) )
5253
];
53-
5454
v = uniform( -500.0, 500.0 );
5555

5656
b.tic();
@@ -61,7 +61,7 @@ bench( pkg+'::native', opts, function benchmark( b ) {
6161
}
6262
}
6363
b.toc();
64-
if ( isnan( real( y ) ) ) {
64+
if ( isnan( imag( y ) ) ) {
6565
b.fail( 'should not return NaN' );
6666
}
6767
b.pass( 'benchmark finished' );

0 commit comments

Comments
 (0)