Learn R Programming

cpgen (version 0.1)

get_num_threads: Get the number of threads for cpgen

Description

Check the variable that specifies the number of threads being used by cpgen-functions

Usage

get_num_threads()

Arguments

Value

Returns the value of the global variable cpgen.threads

See Also

set_num_threads, get_max_threads, check_openmp

Examples

Run this code

# set the number of threads to 1
set_num_threads(1)

# check
get_num_threads()

# set number of threads to the value reported by get_max_threads()
n_threads <- get_max_threads()
set_num_threads(n_threads)

# check
get_num_threads()


Run the code above in your browser using DataLab