Skip to content

Commit cc0c8e4

Browse files
committed
Auto-generated commit
1 parent 6d1a048 commit cc0c8e4

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ A total of 8 issues were closed in this release:
5353

5454
<details>
5555

56+
- [`3223642`](https://github.com/stdlib-js/stdlib/commit/3223642f722c9df1e0abac4d1619378e425a9cd7) - **bench:** fix assertion _(by Athan Reines)_
5657
- [`0118405`](https://github.com/stdlib-js/stdlib/commit/0118405267e70154055052368896b1337d951e43) - **feat:** add `add` to namespace _(by Athan Reines)_
5758
- [`f56c9f7`](https://github.com/stdlib-js/stdlib/commit/f56c9f7be596caa4a23d1ca9c7d6ff1dd919730a) - **feat:** add `number/uint8/base/add` _(by Athan Reines)_
5859
- [`2a27875`](https://github.com/stdlib-js/stdlib/commit/2a278751234674b90251810a6e9236e917df5567) - **chore:** clean-up _(by Athan Reines)_

uint8/base/add/benchmark/c/benchmark.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,13 +112,13 @@ static double benchmark( void ) {
112112
t = tic();
113113
for ( i = 0; i < ITERATIONS; i++ ) {
114114
y = add( x[ i%100 ], 5 );
115-
if ( y > 0 ) {
115+
if ( y > 100 ) {
116116
printf( "unexpected result\n" );
117117
break;
118118
}
119119
}
120120
elapsed = tic() - t;
121-
if ( y > 0 ) {
121+
if ( y > 100 ) {
122122
printf( "unexpected result\n" );
123123
}
124124
return elapsed;

0 commit comments

Comments
 (0)