1 Star 0 Fork 0

BostonHsu/PuringMyCPlusPlusTech

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
try_omp_get_thread_num.cpp 220 Bytes
一键复制 编辑 原始数据 按行查看 历史
#include <iostream>
#include <omp.h>
int main() {
#pragma omp parallel
{
int thread_num = omp_get_thread_num();
std::cout << "Thread number: " << thread_num << std::endl;
}
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/bostonhsu/puring-my-cplus-plus-tech.git
[email protected]:bostonhsu/puring-my-cplus-plus-tech.git
bostonhsu
puring-my-cplus-plus-tech
PuringMyCPlusPlusTech
master

搜索帮助