搜索资源列表
multi_XPVM
- 1、PVM&XPVM并行环境的配置与测试。 2、mandelbrot程序的并行化实现,并计算时间及加速比
hw1
- 使用OpenMP,并行化两个向量的乘积 特点:使用多种并行方案reduction,critical,atomic,schedule(static) 分别输出使用时间,
clustalw1.83.DOS
- 在任务级并行平台P2HP上,开发的一个demo应用程序,它将串行的ClustelW进行并行化。
code
- 在任务级并行平台P2HP上开发的demo应用,即并行蛋白质折叠程序;它是将串行PH算法在P2HP上并行化后而得到的结果。
parallel-dijkstra 并行化思路实现dijkstra算法
- 并行化思路实现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
cpi
- 计算pi值的并行程序,编程语言是c,加入mpi实现并行化-Calculated pi value of parallel programming, programming language is c, achieved by adding parallel mpi
parallel
- 并行程序,并行离散化算法实现,粗糙集数据挖掘程序-Parallel programming, parallel discrete algorithms, rough set data mining program
parallel
- 一个并行粗糙集离散化算法,采用VC和MPI并行开发通信接口实现,目前速度最快的离散化算法。-A parallel algorithm for discretization of rough sets, using VC, and MPI parallel development of communication interfaces, the fastest of the discrete algorithm.
AES
- 一个并行粗糙集离散化算法,采用VC和MPI并行开发通信接口实现,目前速度最快的离散化算法。-A parallel algorithm for discretization of rough sets, using VC, and MPI parallel development of communication interfaces, the fastest of the discrete algorithm.
mpi_wave_i
- 用MPI实现wave程序并行化,采用非阻塞方式-Wave process with MPI parallel implementation, using non-blocking mode
mpiomp_jacobi
- 用MPI和OpenMP实现jacobi程序并行化的混合编程-Achieved with MPI and OpenMP parallel jacobi program mixed programming
Automatic-parallel-compiled
- 这是一篇很有价值的博士论文,对于并行化编译器中并行程序自动生成和性能优化技术进行了较深入的研究。 并行化的最终日标是生成符合日标机体系结构特点的高效并行程序,因此如何产生高效并行代码是并行化编译研究的一项重要内容。 这篇文章以并行化编译器KAP为研究背景,以分布内存结构为目标,研究了并行化过程中的通信优化和消息、传递类型并行程序自动生成问题;以共享内存结构为目标,研究了并行化产生的openMP程序的编译优化问题。通过测试确定了影响openMP程序性能的主要因素,从并行化生成OpenMP并
chapter6
- 划分(partitioning):将问题分为若干个独立的部分。 分治法(divide and conquer method):将一个大问题逐步分割成若干个原问题的子问题,用简单且相同的方法对这些子问题进行求解,然后将这些子问题的解组合成原问题的解。 在分治法中分解问题和合并结果常使用递归技术来实现。递归分治法能使各个子问题并行化执行,即各个进程用来执行被分解的部分。 通常数据的划分也同时局部化。 -partitioning and divide and conquer metho
chapter4
- 一、基于消息传递的程序设计基础 二、利用机群实现程序的并行化 三、基于消息传递的并行程序评价 -First, the based messaging program design based on, use a fleet program parallelization, based on message passing parallel program evaluation
chapter5
- 一、基于消息传递的程序设计基础 二、利用机群实现程序的并行化 三、基于消息传递的并行程序评价 -First, the based messaging program design based on, use a fleet program parallelization, based on message passing parallel program evaluation
Mutlicore
- 高校经典多核并行化设计,借鉴intel课程设置,不可多得好资料-Universities classic multi-core parallel design, drawing intel curriculum, rare good information
quicksort
- 使用MPI编程实现快速排序的并行化 (1) 并行算法的设计 设计快速排序的并行化算法,说明并行化的算法的设计思想。 (2) MPI编程 使用MPI编程实现快速排序的并行化。 (3) 对运行结果的对比和分析。 -Quick Sort programming using MPI parallelization (1) parallel algorithm design parallel algorithm design quick sort, indicating paral
mpi
- 高性能计算:使用mpi实现快拍算法的并行化的代码。-High Performance Computing: Use mpi realize snapshot algorithm parallelization of code.
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
并行程序设计导论
- 适合于新手学习并行化MPI程序以及并行思想学习(This is a parallel program learning material for beginners.)