-
Notifications
You must be signed in to change notification settings - Fork 8
Open
Labels
questionFurther information is requestedFurther information is requested
Milestone
Description
I'm not entirely sure what the use case for gcd_num() is, but is it worth implementing differently? We don't currently import Rcpp (which the second version uses):
d <- sample(1:1000, 1000, TRUE)
microbenchmark::microbenchmark(
epiprocess = epiprocess:::gcd_num(d),
rtestim = rtestim:::gcd(d)
)
#> Warning in microbenchmark::microbenchmark(epiprocess = epiprocess:::gcd_num(d),
#> : less accurate nanosecond times to avoid potential integer overflows
#> Unit: microseconds
#> expr min lq mean median uq max neval
#> epiprocess 12249.816 12346.0635 17960.673 12423.984 14510.54 484596.5 100
#> rtestim 19.024 24.2515 5672.601 34.973 51.66 563304.5 100Created on 2024-03-06 with reprex v2.1.0
Metadata
Metadata
Assignees
Labels
questionFurther information is requestedFurther information is requested