time {gnn} | R Documentation |
Human-Readable Time Measurement
Description
Functions and methods for extracting and printing timings in human-readable format.
Usage
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, ...)
Arguments
x |
|
fmt |
format string as required by |
expr |
see |
print |
|
human |
|
... |
for |
Value
- as.human(), human.time()
named
character(3)
providing user, system and elapsed time in human-readable format.- time.gnn_GNN()
object of class
"gnn_proc_time"
.- print.gnn_proc_time()
x
(invisibly).
Author(s)
Marius Hofert
Examples
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
}
[Package gnn version 0.0-4 Index]