flopsbench {pbdPAPI} | R Documentation |
A benchmarker for measuring flops (floating point operations per second) of one or more functions.
flopsbench(..., data)
... |
Expressions to be benchmarked. |
data |
A list of data for the provided functions. |
A dataframe (class "flopsbench") containng the timings and some basic summary statistics.
## Not run: data <- list(runif(1e4), runif(2e4), runif(3e4)) flopsbench(sqrt, exp, data=data) ## End(Not run)