由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Computation版 - MPI_send 使用求助
相关主题
问个MPI问题(有包子)a question about MPI_Barrier
[合集] 貌似问题解决了Re: 问个MPI问题(有包子)c++ versus fortran
a question about data transfer in MPIHelp! using MPI_gather double precision
MPI问题求助。Help! (转载)!!! How to adjust precision in CPLEX !!!
a question about MPI大家为什么用beowulf?
请问这个mpi程序有什么问题?大家用什么做平行计算
请帮我看看这个MPI_Scatter() 问题integration question
[合集] 分子动力学程序,有人自己编吗?我快疯了。。。any body debugged MPI programms?
相关话题的讨论汇总
话题: mpi话题: real话题: send话题: world话题: comm
进入Computation版参与讨论
1 (共1页)
w**t
发帖数: 1068
1
程序用fortran写的。我想把t传给其他cpu,下面的程序哪里错了?我实现不了传递。
谢谢大侠帮助!
real(8) t
main_pc=0
if (rank .eq. main_pc) then
do dest=1, size-1
call MPI_SEND(t, 1, MPI_REAL, dest, 0, MPI_COMM_WORLD, err)
enddo
else
call MPI_RECV(t, 1, MPI_REAL, 0, 0, MPI_COMM_WORLD, status, err)
endif
s**i
发帖数: 381
2
your t is double precision but MPI_REAL is single precision.
Use MPI_DOUBLE_PRECISION instead

【在 w**t 的大作中提到】
: 程序用fortran写的。我想把t传给其他cpu,下面的程序哪里错了?我实现不了传递。
: 谢谢大侠帮助!
: real(8) t
: main_pc=0
: if (rank .eq. main_pc) then
: do dest=1, size-1
: call MPI_SEND(t, 1, MPI_REAL, dest, 0, MPI_COMM_WORLD, err)
: enddo
: else
: call MPI_RECV(t, 1, MPI_REAL, 0, 0, MPI_COMM_WORLD, status, err)

l*w
发帖数: 646
3
Why not use broadcast?

【在 w**t 的大作中提到】
: 程序用fortran写的。我想把t传给其他cpu,下面的程序哪里错了?我实现不了传递。
: 谢谢大侠帮助!
: real(8) t
: main_pc=0
: if (rank .eq. main_pc) then
: do dest=1, size-1
: call MPI_SEND(t, 1, MPI_REAL, dest, 0, MPI_COMM_WORLD, err)
: enddo
: else
: call MPI_RECV(t, 1, MPI_REAL, 0, 0, MPI_COMM_WORLD, status, err)

1 (共1页)
进入Computation版参与讨论
相关主题
any body debugged MPI programms?a question about MPI
let me ask a question again请问这个mpi程序有什么问题?
who know what is the advantage of UMS to MPI or SMP?请帮我看看这个MPI_Scatter() 问题
怎么表示小数点后长度为200的小数呀?[合集] 分子动力学程序,有人自己编吗?我快疯了。。。
问个MPI问题(有包子)a question about MPI_Barrier
[合集] 貌似问题解决了Re: 问个MPI问题(有包子)c++ versus fortran
a question about data transfer in MPIHelp! using MPI_gather double precision
MPI问题求助。Help! (转载)!!! How to adjust precision in CPLEX !!!
相关话题的讨论汇总
话题: mpi话题: real话题: send话题: world话题: comm