gpt4 book ai didi

julia - Julia 中嵌套循环的并行处理

转载 作者:行者123 更新时间:2023-12-04 16:38:39 38 4
gpt4 key购买 nike

我正在尝试为嵌套循环实现并行处理。但是我收到以下语法错误。

我正在从这里修改示例 (Parallel computing in Julia - running a simple for-loop on multiple cores)

这行得通

for N in 1:5:20, H in 1:5:20
println("The N of this iteration in $N, $H")
end

这是语法错误

using Distributed

@distributed for N in 1:5:20, H in 1:5:20
println("The N of this iteration in $N, $H")
end

enter image description here

最佳答案

@distributed 宏只支持迭代一个参数。因此你可以这样做:

@distributed for (N,H) in collect(Iterators.product(1:5:20,1:5:20))
println("The N of this iteration in $N, $H")
end

另一个选项当然是嵌套循环。在这种情况下,只有一个循环应该是 @distributed.

关于julia - Julia 中嵌套循环的并行处理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65309389/

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