press()
is used to run mark()
across a grid of parameters and
then press the results together.
The parameters you want to set are given as named arguments and a grid of all possible combinations is automatically created.
The code to setup and benchmark is given by one unnamed expression (often
delimited by \{
).
If replicates are desired a dummy variable can be used, e.g. rep = 1:5
for
replicates.
press(..., .grid = NULL)
If named, parameters to define, if unnamed the expression to run. Only one unnamed expression is permitted.
A pre-built grid of values to use, typically a data.frame or tibble. This is useful if you only want to benchmark a subset of all possible combinations.
# Helper function to create a simple data.frame of the specified dimensions
create_df <- function(rows, cols) {
as.data.frame(setNames(
replicate(cols, runif(rows, 1, 1000), simplify = FALSE),
rep_len(c("x", letters), cols)))
}
# Run 4 data sizes across 3 samples with 2 replicates (24 total benchmarks)
press(
rows = c(1000, 10000),
cols = c(10, 100),
rep = 1:2,
{
dat <- create_df(rows, cols)
bench::mark(
min_time = .05,
bracket = dat[dat$x > 500, ],
which = dat[which(dat$x > 500), ],
subset = subset(dat, x > 500)
)
}
)
#> Running with:
#> rows cols rep
#> 1 1000 10 1
#> 2 10000 10 1
#> 3 1000 100 1
#> 4 10000 100 1
#> 5 1000 10 2
#> 6 10000 10 2
#> 7 1000 100 2
#> 8 10000 100 2
#> # A tibble: 24 × 16
#> expression rows cols rep min median `itr/sec` mem_alloc `gc/sec`
#> <bch:expr> <dbl> <dbl> <int> <bch:tm> <bch:tm> <dbl> <bch:byt> <dbl>
#> 1 bracket 1000 10 1 117.6µs 128µs 7772. 115.52KB 30.2
#> 2 which 1000 10 1 108.6µs 114.7µs 8070. 55.76KB 0
#> 3 subset 1000 10 1 165.2µs 231.7µs 4479. 127.38KB 30.5
#> 4 bracket 10000 10 1 943.41µs 961.56µs 1013. 1.13MB 26.7
#> 5 which 10000 10 1 451.31µs 459.66µs 1961. 570.9KB 21.8
#> 6 subset 10000 10 1 1.1ms 1.11ms 892. 1.25MB 22.3
#> 7 bracket 1000 100 1 999.41µs 1.02ms 974. 1010.55KB 22.7
#> 8 which 1000 100 1 839.41µs 863.86µs 1149. 413.68KB 0
#> 9 subset 1000 100 1 1.07ms 1.1ms 890. 1.01MB 30.7
#> 10 bracket 10000 100 1 7.53ms 7.56ms 132. 9.65MB 87.9
#> # ℹ 14 more rows
#> # ℹ 7 more variables: n_itr <int>, n_gc <dbl>, total_time <bch:tm>,
#> # result <list>, memory <list>, time <list>, gc <list>