搜索资源列表
pthreadmatrix
- Pthread c++ 并行矩阵乘法 运行于linux操作系统 -Multi thread matrix multiplication in c++ with Pthread
tongbu1
- 使用全局变量同步线程的简单例子,是多核编程书上的一个例子,欢迎查看-The use of global variables of a simple example of thread synchronization, multi-core programming is an example of the book, please see
MultiThreadProcess
- Windows多线程编程实例的多线程处理,一个简单的区间积分函数的实现。-Multi Thread programming project for multi thread Process。It s a simple example for get random returns a random integer between min and max data.
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
MutipleThread
- 解决多个售票员售票,把一张票售给多个乘客的问题,采用多线程同步与互斥解决。-Solve multiple conductor ticket sales, the number of passengers a ticket sold to the problem of multi-thread synchronization and mutual exclusion solution.
badosxe
- 一款并行的软件,可处理多进程、线程的程序-A parallel software can handle multi-process, thread program
thread
- 多线程循环缓冲程序,有关生产者和消费者在仓库的处理等问题。-Multi-threaded circular buffer program, the producers and consumers in the warehouse processing.
mm
- 多线程实现矩阵并行相乘,在实现方式上采用多线程实现相乘-Implementation of parallel matrix multiplication of multi thread
main.c
- 多线程计算pi,修改计算量则可进行压力测试-multi-thread calculate pi
parallel
- 一种多进程进行并行计算的程序,不采用线程池方法。用多进程并行计算加快运行速度。例子中采用并行多进程取最大值。-A multi-process procedure performed in parallel computing, do not use the thread pool method. Parallel computing using multiple processes to run faster. Examples of parallel multi-process takes 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