mpi.probe(Rmpi)
mpi.probe()所属R语言包:Rmpi
MPI\_Probe and MPI\_Iprobe APIs
MPI \ _Probe和MPI \ _Iprobe的API
译者:生物统计家园网 机器人LoveR
描述----------Description----------
mpi.probe uses the source and tag of incoming message to set a status. mpi.iprobe does the same except it is a nonblocking call,
mpi.probe使用源和标签的传入消息设置状态。 mpi.iprobe不一样的,除了它是一个非阻塞的调用,
用法----------Usage----------
mpi.probe(source, tag, comm = 1, status = 0)
mpi.iprobe(source, tag, comm = 1, status = 0)
参数----------Arguments----------
参数:source
the source of incoming message or mpi.any.source() for any source.
源传入的的消息或mpi.any.source()任何来源。
参数:tag
a tag number or mpi.any.tag() for any tag.
一个标签的数量或mpi.any.tag()的任何标记。
参数:comm
a communicator number
一个通信号
参数:status
a status number
状态数
Details
详细信息----------Details----------
When mpi.send or other nonblocking sends are used to send a message, the receiver may not know the exact length before receiving it. mpi.probe is used to probe the incoming message and put some information into a status. Then the exact length can be found by using mpi.get.count to such a status. If the wild card mpi.any.source or mpi.any.tag are used, then one can use mpi.get.sourcetag to find the exact source or tag of
当mpi.send或其他非阻塞发送用于发送消息,接收器可能不知道之前收到的确切长度。 mpi.probe用来探测传入的消息和状态的一些信息。可以发现通过使用mpi.get.count到这样的状态,然后的确切长度。如果外卡mpi.any.source或mpi.any.tag使用,那么我们可以使用mpi.get.sourcetag找到的确切来源或标签
值----------Value----------
mpi.probe returns 1 only after a matching message has been found.
mpi.probe返回1,只有一个匹配的消息后,已被发现。
mpi.iproble returns TRUE if there is a message that can be received; FALSE otherwise.
mpi.iproble返回TRUE,如果有一个可以接收的消息,否则返回FALSE。
(作者)----------Author(s)----------
Hao Yu
参考文献----------References----------
http://www-unix.mcs.anl.gov/mpi/www/www3/
参见----------See Also----------
mpi.send, mpi.recv, mpi.get.count
mpi.send,mpi.recv,mpi.get.count
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|