1 Star 0 Fork 0

BostonHsu/PuringMyCPlusPlusTech

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
openmp_test1.cpp 497 Bytes
一键复制 编辑 原始数据 按行查看 历史
#include <iostream>
#include <omp.h>
int main()
{
int num_threads = 4;
int sum = 0;
#pragma omp parallel num_threads(num_threads)
{
int thread_id = omp_get_thread_num();
int thread_sum = 0;
// Perform some computation
for (int i = thread_id; i <= 100; i += num_threads)
{
thread_sum += i;
}
// Use the "pv" primitive to update the shared sum variable
#pragma omp critical
{
sum += thread_sum;
}
}
std::cout << "Sum: " << sum << 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

搜索帮助