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


Julia Distributed.remotecall方法用法及代碼示例


用法:

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

remotecall(f, pid, ....) WorkerPool 變體。等待並從pool 獲取一個空閑的worker,然後對其執行remotecall

例子

$ julia -p 3

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

julia> A = rand(3000);

julia> f = remotecall(maximum, wp, A)
Future(2, 1, 6, nothing)

在此示例中,任務在 pid 2 上運行,從 pid 1 調用。

相關用法


注:本文由純淨天空篩選整理自julialang.org 大神的英文原創作品 Distributed.remotecall — Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。