Learn R Programming

rkeops (version 2.2.2)

get_rkeops_options: Get the current rkeops options in R global options scope

Description

rkeops user-defined operators requires specific options to control their behavior at runtime (precision, verbosity, use of GPU, debug flag). Their current values can be printed with get_rkeops_options(). See def_rkeops_options() for more details about these options.

Usage

get_rkeops_options(option = NULL)

Value

a scalar value if only one option was specified or a list with specified rkeops current options values.

Arguments

option

string character or vector of string character, specific option name(s) among "backend", "device_id", "precision", "verbosity", "debug" to get the corresponding option current values. Default is NULL and all option values are returned.

Author

Ghislain Durif

See Also

def_rkeops_options(), set_rkeops_options()

Examples

Run this code
set_rkeops_options()
get_rkeops_options()
get_rkeops_options("backend")
get_rkeops_options(c("backend", "precision"))

Run the code above in your browser using DataLab