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


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


用法一

remotecall_fetch(f, id::Integer, args...; kwargs...)

在一條消息中執行fetch(remotecall(...))。關鍵字參數(如果有)將傳遞給 f 。任何遠程異常都會在 RemoteException 中捕獲並拋出。

另請參見 fetch remotecall

例子

$ julia -p 2

julia> remotecall_fetch(sqrt, 2, 4)
2.0

julia> remotecall_fetch(sqrt, 2, -4)
ERROR: On worker 2:
DomainError with -4.0:
sqrt will only return a complex result if called with a complex argument. Try sqrt(Complex(x)).
...

用法二

remotecall_fetch(f, pool::AbstractWorkerPool, args...; kwargs...) -> result

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

例子

$ julia -p 3

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

julia> A = rand(3000);

julia> remotecall_fetch(maximum, wp, A)
0.9995177101692958

相關用法


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