gpt4 book ai didi

Julia 中的 boolean 矩阵乘法

转载 作者:行者123 更新时间:2023-12-03 18:13:37 32 4
gpt4 key购买 nike

我需要在 Julia 中将两个 boolean 矩阵相乘。
做简单的A*AA^2返回一个 Int64 矩阵。
有没有办法有效地乘以 boolean 矩阵?

最佳答案

继奥斯卡评论添加两个 for围绕您的代码循环,但没有 LoopVectorization 改进,尽管没有在 any 内分配完整数组调用(以便 any 在第一次出现时停止),这是相当快的(编辑:替换标准 AND & 与短路 && ):

function bool_mul2(A, B)
mA, nA = size(A)
mB, nB = size(B)
nA ≠ mB && error()
AB = BitArray(undef, mA, nB)
for i in 1:mA, j in 1:nB
AB[i,j] = any(A[i,k] && B[k,j] for k in 1:nA)
end
AB
end
(注意我删除了 [ 中的 ]any 以不分配到那里。
例如,使用 AB大小为 1000×1000,我得到
julia> @btime bool_mul2($A, $B) ;
16.128 ms (3 allocations: 122.25 KiB)
相比
julia> @btime bool_mul($A, $B) ;
346.374 ms (12 allocations: 7.75 MiB)

编辑:为了平方矩阵,也许尝试
function bool_square(A)
m, n = size(A)
m ≠ n && error()
A² = BitArray(undef, n, n)
for i in 1:n, j in 1:n
A²[i,j] = any(A[i,k] && A[k,j] for k in 1:n)
end

end
我得到
julia> A = rand(Bool, 500, 500) ;

julia> @btime $A * $A .!= 0 ;
42.483 ms (12 allocations: 1.94 MiB)

julia> @btime bool_square($A) ;
4.653 ms (3 allocations: 30.69 KiB)

关于Julia 中的 boolean 矩阵乘法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64939193/

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