Skip to content

Commit

Permalink
bench: fix runner
Browse files Browse the repository at this point in the history
  • Loading branch information
kgryte committed Oct 2, 2024
1 parent 8f0f3b6 commit 24fadbf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ main <- function() {
results <- microbenchmark::microbenchmark( erf( (2.0*runif(1L)) - 1.0 ), times = iterations );

# Sum all the raw timing results to get a total "elapsed" time:
elapsed <- sum( results[[ time ]] );
elapsed <- sum( results[[ 'time' ]] );

# Convert the elapsed time from nanoseconds to seconds:
elapsed <- elapsed / 1.0e9;
Expand Down

1 comment on commit 24fadbf

@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
blas/base/idamax $\color{green}411/411$
$\color{green}+100.00\%$
$\color{green}33/33$
$\color{green}+100.00\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{green}411/411$
$\color{green}+100.00\%$
blas/base/isamax $\color{red}409/411$
$\color{green}+99.51\%$
$\color{red}32/33$
$\color{green}+96.97\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{red}409/411$
$\color{green}+99.51\%$
math/base/special/abs $\color{green}317/317$
$\color{green}+100.00\%$
$\color{green}10/10$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}317/317$
$\color{green}+100.00\%$
math/base/special/copysign $\color{green}207/207$
$\color{green}+100.00\%$
$\color{green}5/5$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}207/207$
$\color{green}+100.00\%$
math/base/special/erf $\color{red}870/882$
$\color{green}+98.64\%$
$\color{red}52/58$
$\color{green}+89.66\%$
$\color{green}10/10$
$\color{green}+100.00\%$
$\color{red}870/882$
$\color{green}+98.64\%$
math/base/special/exp $\color{red}481/487$
$\color{green}+98.77\%$
$\color{red}21/24$
$\color{green}+87.50\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{red}481/487$
$\color{green}+98.77\%$
math/base/special/ldexp $\color{green}279/279$
$\color{green}+100.00\%$
$\color{green}18/18$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}279/279$
$\color{green}+100.00\%$
math/base/special/trunc $\color{green}201/201$
$\color{green}+100.00\%$
$\color{green}7/7$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}201/201$
$\color{green}+100.00\%$

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

Please sign in to comment.