搜索资源列表
-
0下载:
并行化思路实现dijkstra算法。假设有p个处理器,N个顶点。给每个处理器分配N/p个顶点,求出局部的最小值,复杂度为O (N/p)。然后后一半的处理器将自己的最小值发送给第前p/2个处理器。前一半处理器接收到传来的值后,与局部的最小值比较,作为新值。继续循环,直到剩下一个处理器为止。-Parallelized dijkstra algorithm. Suppose there is p a processor, N vertex. Give each processor distributi
-
-
0下载:
Parallel Python (PP)
PP is a python module which provides mechanism for parallel execution of python code on SMP (systems with multiple processors or cores) and clusters (computers connected via network).
It is light, easy to install and int
-
-
0下载:
Intel出版的多核编程,介绍通过软件的多线程方式来提高性能的方法。分为介绍多核变成,线程的综述,并行的基本概念,线程以及并行编程的结构,线程的API,OpenMP技术,并行编程的常规问题,多线程debug方法,Intel多核处理器的线程及其开发工具等。-Intel multi-core programming, published to introduce the way through the software to improve performance of multi-threaded
-
-
0下载:
Programming
Massively Parallel
Processors
A Hands-on Approach
by David B. Kirk and Wen-mei W. Hwu
English version
-
-
0下载:
电子书,综述了事务存储,事务存储是一种很有前途的并行编程模型-ABSTRACT
The advent of multicore processors has renewed interest in the idea of incorporating transactions
into the programming model used to write parallel programs. This approach, known
as transactional memory,
-
-
2下载:
《大规模并行处理器编程实战》英文版,全球第一本介绍CUDA的教程。由于书名太长,只能用其英文缩写,望见谅。-Programming Massively Parallel Processors:A Hands-on Approach,a book which is the first book in the world that provide a perfect guide for learning CUDA.
-
-
0下载:
并行计算机及并行计算的性能评价
并行计算相关的基本概念
加速比定律
-Parallel Vector Processors PVP
-
-
0下载:
矩阵LU分解的并行实现,文档中给出了不同矩阵规模和处理器数下的实验结果。-Matrix LU decomposition parallel implementation, the document gives a different matrix size and the number of processors under the experimental results.
-
-
0下载:
介绍了英特尔至强处理器和英特尔Xeon Phi协处理器和讨论它们的功能和目的。我们也开始介绍便携式的,面向未来的并行编程和讨论在英特尔MIC架构的高性能的先决条件:线程的并行性,矢量化和优化的内存访问模式。本课程将介绍本地的规划模型英特尔Xeon Phi协处理器,允许重用代码的应用程序设计为通用的CPU。会议的实践部分演示了如何在Linux操作系统(OS)在主机上运行的操作系统间的协处理器,以及如何使用英特尔的编译器上运行的处理器的本地应用程序。-Intel Architecture
In
-