get_rkeops_option: Get the current value of a specific compile or runtime options of rkeops
Description
The function get_rkeops_option returns the current value of a specific
rkeops option (in R global options scope) provided as input.
Usage
get_rkeops_option(option)
Value
the value of the requested option (see Details).
Arguments
option
string, name of the options to set up (see Details).
Author
Ghislain Durif
Details
rkeops global options includes two lists defining options used at
compilation of user-defined operators or at runtime. These two list
contains specific informations (see compile_options() and
runtime_options() respectively, in particular for default values).
With the function get_rkeops_option, you get the value of a specific
rkeops option among:
rkeops runtime options: tagCpuGpu, tag1D2D, tagHostDevice,
device_id
These options are set with the functions set_rkeops_options() and
set_rkeops_option(). To know which values are allowed for which
options, you can check compile_options() and
runtime_options().