搜索资源列表
Mode
- 通过向Mode模块发送event来做状态迁移,Mode模块中有一个Matrix表,通过Matrix表来做出判断-through Mode modules make this event the movement Mode Module Matrix is a table through the Matrix to make a judgment Table
zy1
- 一.算法介绍: **数据结构: 1.可利用资源向量Available 2.最大需求矩阵Max 3.分配矩阵Allocation 4.需求矩阵Need **功能介绍: 模拟实现Dijkstra的银行家算法以避免死锁的出现.分两部分组成: 第一部分:银行家算法(扫描) 1.如果Request<=Need,则转向2 否则,出错 2.如果Request<=Available,则转向3,否则等待 3.系统试探分配请求的资源给进程 4.系统执行安
mpichbingxingdiama0711
- 基于cannon算法的MPI环境的并行程序原代码 能够计算超大型矩阵相乘,本人的毕业设计 绝对经典-cannon algorithm based on the environment of MPI parallel programming code to calculate the original super matrix multiplication. I graduated from the absolute classic design
matrixaddition
- Matrix addition using multithreading
Matrixmultiplication
- matrix multiplication using multithreading
mycannon
- 该程序是基于cannon算法实现的矩阵相乘运算,运行平台VS2005,需要设置环境变量。-The program is based on the cannon algorithm matrix multiplication operation, operation platform, VS2005, need to set environment variables.
matrix
- multithreahing matrix multiplication sourcecode ,can be used in both single platform and multiplatform Successfully compiled bu gcc -lpthread-multithreahing matrix multiplication sourcecode ,can be used in both single platform and multiplatfo
lab2
- 矩阵相乘的例子,采用了多线程,可以动态分配线程的个数-Parallel matrix multiplication
matrix.c
- 采用pthread多线程编程实现的矩阵乘法运算,采用纯c编写-matrix multiplication in multi-thread
JavaMultithread
- java 计算矩阵相乘。采用多线程的方法。单线程与多线程对比 计算量相同,线程数不同。-java calculate the matrix multiplication. Using the method of multi-threaded. Single-threaded and multi-threaded results calculated in the same number of threads.
mysumma
- SUMMA并行矩阵的MPI实现,不用考虑矩阵的行列必须为平方数-UMMA parallel matrix MPI implementation
newsumma
- SUMMA并行矩阵的另一种MPI实现,在广播时以块为单位传输,运行速度明显提高-SUMMA parallel matrix another MPI implementation, the broadcast is transmitted in units of blocks, running speed is significantly improved
matrix
- 矩阵相乘并行算法MPI源程序 并行思想加快速度-MPI parallel matrix multiplication algorithm source code parallel thinking speed
cengci_bingxing
- 一种层次聚类算法的并行改进,采用MPI编程,对三角矩阵的求解实现并行-A hierarchical clustering algorithm to improve parallelism, using MPI programming, parallel solving triangular matrix
Cpp1
- 多线程求卷积1)数据矩阵:256*256 –原始矩阵设置:随机50个点设置为255,其余为0 2)卷积核:5*5 –明确注明所设计的卷积核 3)迭代次数:100 –每5次迭代保存一次数据矩阵 –通过20个结果矩阵,生成动画 初始矩阵随机生成,随机分配50个数的值为2-Multithreading convolution 1) Data Matrix: 256* 256- the original matrix settings: a randomized 50-poi
threads
- 《操作系统概念》(第七版)第四单元实验利用多线程实现矩阵乘法源码。-<<Operation System Concepts>>(Seventh Edition) chapter 4 Project:Matrix Multiplication
1.Matrix_Multiplication
- serial matrix multiplication and parallel multiplication using openmp. comparision between them
Matrix
- 这是矩阵相乘的并行代码,opencl写的对于初学opencl语言的人的一个很好的例子。-This is a matrix multiplication parallel code, opencl written language for a good beginner opencl human examples.
thread
- 多线程矩阵计算 linux/ windows-matrix multi threads linux/ windows both ok
banker
- 可运行 #define W 10 //最大进程数W=10 #define R 20 //最大资源总数=20 int AVAILABLE[R] //可利用资源向量 int MAX[W][R] //最大需求矩阵 int ALLOCATION[W][R] //分配矩阵 int NEED[W][R] //需求矩阵 int Request[R] //进程请求向量 -Can run#define W 10 // maximum number of processes W =