Skip to content

Commit

Permalink
bench: remove f suffix in C benchmark
Browse files Browse the repository at this point in the history
PR-URL: #2911
Reviewed-by: Athan Reines <[email protected]>
Signed-off-by: Gunj Joshi <[email protected]>
  • Loading branch information
gunjjoshi authored Sep 17, 2024
1 parent 6dc1156 commit 65d1c5b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ static double benchmark( void ) {
int i;

for ( i = 0; i < 100; i++ ) {
x[ i ] = ( 1000.0f * rand_double() ) - 500.0f;
x[ i ] = ( 1000.0 * rand_double() ) - 500.0;
}

t = tic();
Expand Down

1 comment on commit 65d1c5b

@stdlib-bot
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage Report

Package Statements Branches Functions Lines
math/base/special/erfcx $\color{red}1368/1443$
$\color{green}+94.80\%$
$\color{green}95/95$
$\color{green}+100.00\%$
$\color{red}79/104$
$\color{green}+75.96\%$
$\color{red}1368/1443$
$\color{green}+94.80\%$

The above coverage report was generated for the changes in this push.

Please sign in to comment.