我正在尝试使用OpenMP设置程序中的线程数。由于某些原因,即使最大线程数为4,我的程序也只使用1个内核。我使用的是MacOSX,但使用的是gcc编译器(具体是:gcc9.1.0和OpenMP版本4.5)
#include <fstream>
#include <chrono>
#include <omp.h>
int main() {
int maxthreads = omp_get_max_threads();
std::cout << "maxthreads: " << maxthreads << std::endl;
omp_set_dynamic(0);
omp_set_num_threads(4);
#pragma omp parallel num_threads(4)
{
int id = omp_get_thread_num();
#pragma omp critical
std::cout << "Hi from " << id << std::endl;
}
}
我得到的结果是:
4
Hi from 0
但是我希望“ Hi from i”会被打印4次。
答案 0 :(得分:1)
我需要在cmake中添加标志:
-DCMAKE_CXX_FLAGS=-fopenmp
和-DCMAKE_C_FLAGS=-fopenmp