Description Usage Arguments Details Value Examples
Measuring idle cycles.
1 | system.idle(expr, events = "float", gcFirst = TRUE, burnin = TRUE)
|
expr |
A valid R expression to be profiled. |
events |
The class of processing unit to profile; options are "float", "int", "numeric", "branch", "load", and "all". |
gcFirst |
logical; determines if garbage collection should be called before profiling. |
burnin |
logical; determines if the function should first be evaluated with an empty expression. |
This function measures the evaluation of the provided expression, expr, for the number of cycles that specific specialized processing units are idle. The additional arguments, gcFirst and burnin, can be toggled to better simulate the target context.
The results of the requested PAPI events are returned, in a named list, with values stored in double precision.
1 2 3 4 5 6 | ## Not run:
library(pbdPAPI)
system.idle(1+1, events="float")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.