我目前正在为茱莉亚的怪异行为而挣扎。 我正在浏览数组,无论数组是否在结构内部,Julia的行为都不相同。
对于结构内部的数组,有许多分配似乎毫无意义。具体来说,分配的数量与数组的大小一样多。
下面是重复此问题的代码:
function test1()
a = ones(Float32, 256)
for i = 1:256
a[i]
end
end
struct X
mat
end
function test2()
a = X(ones(Float32, 256))
for i = 1:256
a.mat[i]
end
end
function main()
test1()
test2()
@time test1()
@time test2()
end
main()
我得到的输出是:
0.000002 seconds (1 allocation: 1.141 KiB)
0.000012 seconds (257 allocations: 5.141 KiB)
起初我以为这是一个类型问题,但我不强迫这样做,并且循环后类型也没有不同。
感谢您的帮助。
答案 0 :(得分:2)
您需要在mat
中指定struct
的类型。否则,您使用X
的函数将无法进行专门化和优化。
没有类型注释的字段默认为Any,并且可以相应地 持有任何类型的价值。 https://docs.julialang.org/en/v1/manual/types/index.html#Composite-Types-1
将结构定义更改为
struct X
mat::Vector{Float32}
end
将解决问题。 现在的结果是:
0.000000 seconds (1 allocation: 1.141 KiB)
0.000000 seconds (1 allocation: 1.141 KiB)
如果您更改代码中的一件事,您实际上可以通过@code_warntype
宏看到效果。
for i = 1:256
a.mat[i]
end
这部分并没有做太多。要使用@code_warntype
查看效果,请将旧代码中的这一行更改为
for i = 1:256
a.mat[i] += 1.
end
@code_warntype
的结果将使Any
变成红色,通常应避免使用该颜色。原因是mat
的类型在编译时未知。
> @code_warntype test2() # your test2() with old X def
Body::Nothing
1 ─ %1 = $(Expr(:foreigncall, :(:jl_alloc_array_1d), Array{Float32,1}, svec(Any, Int64), :(:ccall), 2, Array{Float32,1}, 256, 256))::Array{Float32,1}
│ %2 = invoke Base.fill!(%1::Array{Float32,1}, 1.0f0::Float32)::Array{Float32,1}
└── goto #7 if not true
2 ┄ %4 = φ (#1 => 1, #6 => %14)::Int64
│ %5 = φ (#1 => 1, #6 => %15)::Int64
│ %6 = (Base.getindex)(%2, %4)::Any <------ See here
│ %7 = (%6 + 1.0)::Any
│ (Base.setindex!)(%2, %7, %4)
│ %9 = (%5 === 256)::Bool
└── goto #4 if not %9
3 ─ goto #5
4 ─ %12 = (Base.add_int)(%5, 1)::Int64
└── goto #5
5 ┄ %14 = φ (#4 => %12)::Int64
│ %15 = φ (#4 => %12)::Int64
│ %16 = φ (#3 => true, #4 => false)::Bool
│ %17 = (Base.not_int)(%16)::Bool
└── goto #7 if not %17
6 ─ goto #2
7 ┄ return
现在有了X
的新定义,您将在@code_warntype
的结果中看到每种类型的推断。
如果希望X.mat
保留其他类型的Vector
或值,则可能要使用Parametric Types。使用参数类型时,编译器仍将能够优化您的函数,因为在编译期间会知道类型。我真的建议您阅读types和performance tips的相关手册条目。
答案 1 :(得分:2)
julia> struct X{T}
mat::T
end
julia> X{Float64}.(1:3)
5-element Array{X{Float64},1}:
X{Float64}(1.0)
X{Float64}(2.0)
X{Float64}(3.0)
@code_warntype
宏来查看Julia编译器在哪里不能正确识别类型。