File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
uint8/base/add/benchmark/c Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff 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)_
Original file line number Diff line number Diff 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 ;
You can’t perform that action at this time.
0 commit comments