gpt4 book ai didi

c - 如何在vs code中安装和使用Openmp

转载 作者:行者123 更新时间:2023-11-30 16:06:21 27 4
gpt4 key购买 nike

我已经在 vscode 中正确安装并运行了 c/c++,我的 gcc 版本是 8.2.0 并且我已经安装了 MinGw

我使用 VS code 来运行我的 C 程序

#include <stdio.h>
#include <stdlib.h>
#include <omp.h>

int main(int argc, char* argv[])
{
int nthreads, tid;
{
tid = omp_get_thread_num();
printf("welcome to GFG from thread = %d\n", tid);
if (tid == 0){
nthreads = omp_get_num_threads();
printf("number of threads = %d\n", nthreads);
}
}
}

但它不起作用,因为

[Running] cd "c:\cexam\" && gcc openmp_helloword.c -o openmp_helloword && "c:\cexam\"openmp_helloword
c:/mingw/bin/../lib/gcc/mingw32/8.2.0/../../../../mingw32/bin/ld.exe: C:\Users\WinstonLi\AppData\Local\Temp\ccAAWXl3.o:openmp_helloword.c:(.text+0xf): undefined reference to `omp_get_thread_num'
c:/mingw/bin/../lib/gcc/mingw32/8.2.0/../../../../mingw32/bin/ld.exe: C:\Users\WinstonLi\AppData\Local\Temp\ccAAWXl3.o:openmp_helloword.c:(.text+0x33): undefined reference to `omp_get_num_threads'
collect2.exe: error: ld returned 1 exit status

最佳答案

gcc openmp_helloword.c -o openmp_helloword

链接期间缺少库。 gcc 将使用 -fopenmp 为您添加它们。考虑文档:

https://gcc.gnu.org/onlinedocs/gcc/C-Dialect-Options.html#index-fopenmp

关于c - 如何在vs code中安装和使用Openmp,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59981339/

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