Learn R Programming

ggmlR (version 0.6.1)

ggml_time_ms: Get Time in Milliseconds

Description

Returns the current time in milliseconds since the timer was initialized.

Usage

ggml_time_ms()

Arguments

Value

Numeric value representing milliseconds

Examples

Run this code
# \donttest{
ggml_time_init()
start <- ggml_time_ms()
Sys.sleep(0.01)
elapsed <- ggml_time_ms() - start
# }

Run the code above in your browser using DataLab