gpt4 book ai didi

c++ - 在 xcode 中增加 openmp 中的线程数

转载 作者:行者123 更新时间:2023-11-30 05:31:43 33 4
gpt4 key购买 nike

我按照 clang-omp in Xcode under El Capitan 中这个答案的说明进行操作

我能够在 xcode 上运行 openmp 程序。但是只有 1 个线程。

此外,我可以从终端运行,请引用我的回答 Installing OpenMP on Mac OS X 10.11

如何增加号。 xcode 中的线程数?

我正在运行示例程序:

    #include <omp.h>
#include <stdio.h>
int main() {
#pragma omp parallel
printf("Hello from thread %d, nthreads %d\n", omp_get_thread_num(), omp_get_num_threads());
}

我在 xcode 的输出中只有一个线程。

我试过 Xcode->Edit Schemes->Arguments->Env variables->OMP_NUM_THREADS 值为 4

我也试过 omp_set_num_threads(4)

最佳答案

我确信这个答案来得太晚了。但希望可以帮助别人。我正在努力解决同样的问题并通过以下方式解决:将 -fopenmp 添加到其他 C++ 标志以及 cflags。

希望这对某人有帮助。

关于c++ - 在 xcode 中增加 openmp 中的线程数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35468246/

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