mark {bench} | R Documentation |
Benchmark a series of functions
Description
Benchmark a list of quoted expressions. Each expression will always run at least twice, once to measure the memory allocation and store results and one or more times to measure timing.
Usage
mark(
...,
min_time = 0.5,
iterations = NULL,
min_iterations = 1,
max_iterations = 10000,
check = TRUE,
memory = capabilities("profmem"),
filter_gc = TRUE,
relative = FALSE,
time_unit = NULL,
exprs = NULL,
env = parent.frame()
)
Arguments
... |
Expressions to benchmark, if named the |
min_time |
The minimum number of seconds to run each expression, set to
|
iterations |
If not |
min_iterations |
Each expression will be evaluated a minimum of |
max_iterations |
Each expression will be evaluated a maximum of |
check |
Check if results are consistent. If |
memory |
If |
filter_gc |
If |
relative |
If |
time_unit |
If |
exprs |
A list of quoted expressions. If supplied overrides expressions
defined in |
env |
The environment which to evaluate the expressions |
Value
A tibble with the additional summary columns. The following summary columns are computed
-
expression
-bench_expr
The deparsed expression that was evaluated (or its name if one was provided). -
min
-bench_time
The minimum execution time. -
median
-bench_time
The sample median of execution time. -
itr/sec
-double
The estimated number of executions performed per second. -
mem_alloc
-bench_bytes
Total amount of memory allocated by R while running the expression. Memory allocated outside the R heap, e.g. bymalloc()
ornew
directly is not tracked, take care to avoid misinterpreting the results if running code that may do this. -
gc/sec
-double
The number of garbage collections per second. -
n_itr
-integer
Total number of iterations after filtering garbage collections (iffilter_gc == TRUE
). -
n_gc
-double
Total number of garbage collections performed over all iterations. This is a psudo-measure of the pressure on the garbage collector, if it varies greatly between to alternatives generally the one with fewer collections will cause fewer allocation in real usage. -
total_time
-bench_time
The total time to perform the benchmarks. -
result
-list
A list column of the object(s) returned by the evaluated expression(s). -
memory
-list
A list column with results fromRprofmem()
. -
time
-list
A list column ofbench_time
vectors for each evaluated expression. -
gc
-list
A list column with tibbles containing the level of garbage collection (0-2, columns) for each iteration (rows).
See Also
press()
to run benchmarks across a grid of parameters.
Examples
dat <- data.frame(x = runif(100, 1, 1000), y=runif(10, 1, 1000))
mark(
min_time = .1,
dat[dat$x > 500, ],
dat[which(dat$x > 500), ],
subset(dat, x > 500))