资源简介
这是OpenMP的例子程序,只要仔细研读,很快就能入门,不需要看网上所谓的教程。
代码片段和文件信息
#include
#include
#define N 6
int main(int argc char *argv[])
{
int i;
printf (“Hello World! Thread: %d\n“
omp_get_thread_num());
#pragma omp parallel for
for (i = 0; i < N; ++i)
printf (“Hello World! Thread: %d i: %d\n“
omp_get_thread_num() i);
return 0;
}
相关资源
- 西安电子科技大学 并行计算 霍红卫
- Exact Conditions of Blow-up and Global Existen
- doneex xcell compiler 2.1.2.9绿色汉化版(
- 山东大学编译原理PL/0语言 compiler实验
- 基于Spark的PSO并行计算
- 整理最全资料:并行计算大作业:矩
- 三维可压缩流场MPI+OpenMP混合并行算法
- Wind River Diab Compiler for PowerPC
- 一种并行计算通信优化策略
- MPI和CUDA在多层快速多极子中的应用
- 论文研究 - 开放性试验研究Yokukansan
- FFT并行MPI实现
- Design_compiler经典教程
- 龙书《编译原理》(Compilers:Principle
- 有限元结构分析并行计算.pdf
- 高性能并行计算.zip
- Writing A Compiler In Go.pdf
- R并行编程实战
- DFT Compiler Scan User Guide Version E-2010.12
- OpenMP编译原理及实现技术
- 并行计算——结构·算法·编程修订版
- synopsys公司的Design Compiler license生成工
- 中科院课程 高性能并行计算课件,程
- 综合与Design Compiler
- Design Compiler student guide-学习手册
- OpenCV 1.0.0 patch for ffmpeg errors
- 中科大并行计算经典课件
- 《GPU高性能计算之CUDA》书中源代码
- 陈国良并行计算机体系结构
- delphi反编译工具 Decompiler v1.1.0.194
评论
共有 条评论