41 static void set(
const int n)
46 omp_set_num_threads(n);
49 throw std::invalid_argument(
"Number of threads must be positive");
58 static int get() {
return num_threads; }
63 inline static int num_threads = std::max(1, omp_get_max_threads() / 2);
66 inline static int num_threads = 1;
Manages OpenMP thread settings across libslope.
static int get()
Get the current number of threads.
static void set(const int n)
Set the number of threads to use for parallel computations.
Namespace containing SLOPE regression implementation.