slope 0.29.0
Loading...
Searching...
No Matches
threads.h
Go to the documentation of this file.
1
6#pragma once
7
8#include <algorithm>
9#include <stdexcept>
10#ifdef _OPENMP
11#include <omp.h>
12#endif
13
14namespace slope {
15
34{
35public:
41 static void set(const int n)
42 {
43 if (n > 0) {
44 num_threads = n;
45#ifdef _OPENMP
46 omp_set_num_threads(n);
47#endif
48 } else {
49 throw std::invalid_argument("Number of threads must be positive");
50 }
51 }
52
58 static int get() { return num_threads; }
59
60private:
61#ifdef _OPENMP
63 inline static int num_threads = std::max(1, omp_get_max_threads() / 2);
64#else
66 inline static int num_threads = 1;
67#endif
68};
69
70} // namespace slope
Manages OpenMP thread settings across libslope.
Definition threads.h:34
static int get()
Get the current number of threads.
Definition threads.h:58
static void set(const int n)
Set the number of threads to use for parallel computations.
Definition threads.h:41
Namespace containing SLOPE regression implementation.
Definition clusters.cpp:5