当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Julia Distributed.remotecall_wait方法用法及代码示例


用法:

remotecall_wait(f, pool::AbstractWorkerPool, args...; kwargs...) -> Future

remotecall_wait(f, pid, ....) WorkerPool 变体。等待并从pool 获取一个空闲的worker,然后对其执行remotecall_wait

例子

$ julia -p 3

julia> wp = WorkerPool([2, 3]);

julia> A = rand(3000);

julia> f = remotecall_wait(maximum, wp, A)
Future(3, 1, 9, nothing)

julia> fetch(f)
0.9995177101692958

相关用法


注:本文由纯净天空筛选整理自julialang.org 大神的英文原创作品 Distributed.remotecall_wait — Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。