當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。