搜索资源列表
MultiCore-Programming
- Intel出版的多核编程,介绍通过软件的多线程方式来提高性能的方法。分为介绍多核变成,线程的综述,并行的基本概念,线程以及并行编程的结构,线程的API,OpenMP技术,并行编程的常规问题,多线程debug方法,Intel多核处理器的线程及其开发工具等。-Intel multi-core programming, published to introduce the way through the software to improve performance of multi-threaded
Simple_number
- Simple number - program for Intel Thread Checker for testing/OpenMP
Intel_OpenMP_Primer
- Intel发布的OpenMP入门读物,深入浅出,适合初学者使用-Intel released the OpenMP primer, easy to understand for beginners
CnC_tutorial
- Intel CnC 帮助文档, 在这个文档中,你可以找到英特尔CnC并行的使用方法,CnC比OpenMp最大的优势在于你并不需要十分了解它是怎么并行的,只要将你需要计算的数据放入cnc中,它会自动并行-Intel CnC help document. In this document, you can find how to use CnC, CnC is better than openMp because it doesn t matter if the programer is p
odd-even-transpostion
- An odd-even transposition program using Intel MPI and OpenMP
Colfax-HOW-Day-02
- we focus on the usage of the Intel Xeon Phi platform as a coprocessor in the offload programming model. We talk about the explicit offload model based on compiler pragmas, explaining how to offload functions, local scalars and arrays of known size, a
combation caculation
- Intel编译器的自动并行化功能可以自动的将串行程序的一部分转换为线程化代码,适用于多核或多处理器的共享内存系统,OpenMP是C/C++ 和Fortan等的应用编程接口,已经被大多数计算机硬件和软件厂家所标准化。(Automatic parallelization of serial program function can automatically convert a portion of the thread of Intel code compiler, shared memory s
matmul.tar
- 矩阵乘法的多线程并行实现,包括:simple,采用openmp对索引顺序ijk(一般写法)的循环实现并行;opt,采用openmp对索引顺序ikj(向量化友好)的循环实现并行;mkl,调用高性能数学库实现矩阵乘法。(Multi-thread parallelization of matrix-matrix multiplication: "simple" case, ijk loop (usual pattern); "opt" case, ikj (ve