mpi.info.create(Rmpi)
mpi.info.create()所属R语言包:Rmpi
MPI\_Info\_create, MPI\_Info\_free, MPI\_Info\_get, MPI\_Info\_set APIs
MPI \ _info \ _create,MPI \ _info \ _free,MPI \ _info \ _get,MPI \ _info \ _set的API
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Many MPI APIs take an info argument for additional information passing. An info is an object which consists of many (key,value) pairs. Rmpi uses an internal memory to store an info object.
许多MPI的API的其他信息,传递一个信息参数。信息是一个对象,它包括许多(键,值)对。 RMPI使用内部存储器来存储信息的对象。
mpi.info.create creates a new info object.
mpi.info.create创建一个新的info对象。
mpi.info.free frees an info object and sets it to MPI\_INFO\_NULL.
mpi.info.free释放一个信息对象,将其设置为MPI \ _info \ _NULL。
mpi.info.get retrieves the value associated with key in an info.
mpi.info.get检索值与关键的信息。
mpi.info.set adds the key and value pair to info.
mpi.info.set增加键和值对的信息。
用法----------Usage----------
mpi.info.create(info = 0)
mpi.info.free(info = 0)
mpi.info.get(info = 0, key, valuelen)
mpi.info.set(info = 0, key, value)
参数----------Arguments----------
参数:info
an info number.
信息数量。
参数:key
a char (length 1).
一个字符(长度为1)。
参数:valuelen
the length (nchar) of a key
的一个关键的长度(NCHAR)
参数:value
a char (length 1).
一个字符(长度为1)。
值----------Value----------
mpi.info.create, mpi.info.free, and mpi.info.set return 1 if success and 0 otherwise.
mpi.info.create,mpi.info.free和mpi.info.set返回1,如果成功,否则为0。
mpi.info.get returns the value (a char) for a given info and valuelen.
mpi.info.get为一个给定的信息和valuelen的返回值(一个字符)。
(作者)----------Author(s)----------
Hao Yu
参见----------See Also----------
mpi.spawn.Rslaves
mpi.spawn.Rslaves
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|