openmp 在我的 mac 上运行单线程
openmp runs single threaded on my mac
我正在尝试在 Mac 上使用 openmp 并行化程序,但我无法使其成为多线程。
我已经尝试从源代码(在 svn co 之后)构建 llvm/clang/openmp 3.7.1 作为 documented, I have also tried using the prebuild versions of clang and OpenMP 3.7.0 given by the llvm project。
在每种情况下,生成的编译器都可以与 -fopenmp 标志一起正常工作,并生成链接到 openmp 运行time.
的可执行文件
我使用以下 openmp 'hello world' 程序:
#include <omp.h>
#include <stdio.h>
#include <stdlib.h>
int main (int argc, char *argv[]) {
int nthreads, tid;
/* Fork a team of threads giving them their own copies of variables */
#pragma omp parallel private(nthreads, tid)
{
/* Obtain thread number */
tid = omp_get_thread_num();
printf("Hello World from thread = %d\n", tid);
/* Only master thread does this */
if (tid == 0)
{
nthreads = omp_get_num_threads();
printf("Number of threads = %d\n", nthreads);
}
} /* All threads join master thread and disband */
}
我编译使用:
clang -fopenmp hello.c -o hello
然后 运行 结果程序:
env OMP_NUM_THREADS=2 ./hello
给出:
Hello World from thread = 0
Number of threads = 1
有什么想法吗?
clang < 3.8.0 需要 -fopenmp=libomp 来生成 OpenMP 代码。 clang >= 3.8.0 还支持 -fopenmp(-fopenmp=libomp 也可以使用)。
我正在尝试在 Mac 上使用 openmp 并行化程序,但我无法使其成为多线程。 我已经尝试从源代码(在 svn co 之后)构建 llvm/clang/openmp 3.7.1 作为 documented, I have also tried using the prebuild versions of clang and OpenMP 3.7.0 given by the llvm project。 在每种情况下,生成的编译器都可以与 -fopenmp 标志一起正常工作,并生成链接到 openmp 运行time.
的可执行文件我使用以下 openmp 'hello world' 程序:
#include <omp.h>
#include <stdio.h>
#include <stdlib.h>
int main (int argc, char *argv[]) {
int nthreads, tid;
/* Fork a team of threads giving them their own copies of variables */
#pragma omp parallel private(nthreads, tid)
{
/* Obtain thread number */
tid = omp_get_thread_num();
printf("Hello World from thread = %d\n", tid);
/* Only master thread does this */
if (tid == 0)
{
nthreads = omp_get_num_threads();
printf("Number of threads = %d\n", nthreads);
}
} /* All threads join master thread and disband */
}
我编译使用:
clang -fopenmp hello.c -o hello
然后 运行 结果程序:
env OMP_NUM_THREADS=2 ./hello
给出:
Hello World from thread = 0
Number of threads = 1
有什么想法吗?
clang < 3.8.0 需要 -fopenmp=libomp 来生成 OpenMP 代码。 clang >= 3.8.0 还支持 -fopenmp(-fopenmp=libomp 也可以使用)。