time {gnn} | R Documentation |
Functions and methods for extracting and printing timings in human-readable format.
as.human(x, fmt = "%.2f") human.time(expr, print = TRUE, ...) ## S3 method for class 'gnn_GNN' time(x, human = FALSE, ...) ## S3 method for class 'gnn_proc_time' print(x, ...)
x |
|
fmt |
format string as required by |
expr |
see |
print |
|
human |
|
... |
for |
named character(3)
providing
user, system and elapsed time in human-readable format.
object of class "gnn_proc_time"
.
x
(invisibly).
Marius Hofert
if(TensorFlow_available()) { # rather restrictive (due to R-Forge, winbuilder) library(gnn) # for being standalone human.time(Sys.sleep(0.1)) # print human-readable time (proc.obj <- human.time(Sys.sleep(0.1), print = FALSE)) # save the timing (character(3)) fnn <- FNN() time(fnn) # default print method for objects of class "gnn_proc_time" time(fnn, human = TRUE) # human-readable print method for such objects }