gpt4 book ai didi

multithreading - openmp 在我的 mac 上运行单线程

转载 作者:行者123 更新时间:2023-12-04 08:26:25 26 4
gpt4 key购买 nike

我试图在 Mac 上使用 openmp 并行化一个程序,但我无法让它成为多线程。我已经尝试从源代码(在 svn co 之后)构建 llvm/clang/openmp 3.7.1 作为 documented ,我也尝试过使用 prebuild versions of clang and OpenMP 3.7.0 given by the llvm project .在每种情况下,生成的编译器都可以与 -fopenmp 标志一起正常工作,并生成链接到 openmp 运行时的可执行文件。

我使用以下 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)。

关于multithreading - openmp 在我的 mac 上运行单线程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35064093/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com