gpt4 book ai didi

parallel-processing - julia 任务中的变量范围

转载 作者:行者123 更新时间:2023-12-04 23:47:14 25 4
gpt4 key购买 nike

我已将 pmap() 实现调整到我的程序中以进行一些调度,并且我对任务中变量的范围有疑问。这是 Julia 的实现

function pmap(f, lst)
np = nprocs() # determine the number of processes available
n = length(lst)
results = cell(n)
i = 1
# function to produce the next work item from the queue.
# in this case it's just an index.
nextidx() = (idx=i; i+=1; idx)
@sync begin
for p=1:np
if p != myid() || np == 1
@async begin
while true
idx = nextidx()
if idx > n
break
end
results[idx] = remotecall_fetch(p, f, lst[idx])
end
end
end
end
end
results
end

如果我将 idx = nextidx() 行替换为 idx=x; i=i+1; ,每个任务更新变量 i 的本地副本。然而,函数 nextidx() 中的变量 i 由所有任务共享。为什么是这样?

最佳答案

我先把上面的代码简化一下:

function test()
i=10
nexti() = (inx=i;i+=1;inx)
@sync begin
@async begin
i=i+10
nexti()
println("value of i in another thread => $i")
end
end
println("value of i in test() => $i")
end

test()

# value of i in another thread => 20
# value of i in test() => 11

我们声明 nexti()在与 i 相同的过程中已声明,并且 inexti()指的是相同的位置,因此对 i 的任何更改内 nexti()警报 i外部作用域中的值。

另一方面,@async 宏强制内部的块在不同的进程上运行,因此该块使用 i 的副本值和此块内的任何更改都不会发出警报 i外部作用域中的值。

关于parallel-processing - julia 任务中的变量范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30303232/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com