搜索资源列表
my
- 利用MPI_SEND 和mpi_recv来模拟mpi_Bcast和mpi_reduce.
my
- 利用MPI_SEND 和mpi_recv来模拟mpi_Bcast和mpi_reduce.-MPI_SEND and mpi_recv use to simulate mpi_Bcast and mpi_reduce.
trapezoidal
- 并行计算trapezoidal rule Write an MPI program for numerical integration based on the trapezoidal rule. For communication, use the functions MPI_Send() and MPI_Recv() that were described in the lecture. The number of
jacobi
- Write an MPI program that solves a set of linear equations Ax = b with the 并行计算 Jacobi method. The root process reads the matrix A and the vector b from files. The file names have to be specified by the user
Allgather
- 用PI_Send,MPI_Recv实现 MPI_Allgather-With PI_Send, MPI_Recv realize MPI_Allgather
collective
- 用MPI_send和MPI_recv编写的MPI集群通信-Written with MPI_send and MPI_recv MPI cluster communication
mpi_gather
- 自己编写的可利用MPI_Send和MPI_Recv来实现allgather功能,,效果和系统自带的MPI_gather比较相当,可在曙光4000A编译运行-Effect and the system comes with MPI_gather quite available MPI_Send and MPI_Recv to achieve allgather functions, write your own, you can comp
myAllgather
- 采用MPI_send和MPI_Recv实现MPI_Allgather的功能,并测试对比你的实 现和MPI原有实现的性能-To adopt MPI_send and MPI_Recv the functionality of MPI_Allgather and to test the contrast you achieve and original MPI to achieve performance
new--1
- 使用MPI_Send和MPI_Recv 实现MPI_Allgather, MPI_Alltoall ,MPI_Gather, MPI_Scatter 等群集函数 -Use MPI_Send and MPI_Recv achieve MPI_Allgather, MPI_Alltoall, MPI_Gather, MPI_Scatter and other cluster function
Desktop
- 使用MPI_Send和MPI_Recv实现MPI_Bcast函数-Use MPI_Send and MPI_Recv achieve MPI_Bcast function
Desktop
- 采用MPI_Send 和MPI_Recv 编写代码来实现包括MPI_Bcast、MPI_Alltoall、MPI_Gather、MPI_Scatter 等MPI 群集通信函数的功能-mpi calmatr
MPI_Send和MPI_Recv实现
- 利用简单的发送与接收函数来实现正方形处理器网格上的MPI并行程序(Implementation of matrix multiplication with simple transmission and reception)
my_mpi_broadcast
- This is a common source of confusion for people new to MPI. You don't use MPI_Recv() to receive data sent by a broadcast; you use MPI_Bcast().