Closed
Description
openedon May 28, 2022
The following relatively simple script dumps core on Linux:
#!/usr/bin/julia
struct Aa
train!::Function
end
function createa()
x::Vector{T} where T<:Real = fill(NaN,0)
train = () -> begin
a = zeros(1, 100)
x = ones(size(a,2)-1)
a * vcat(x, 1)
return x
end
Aa(train)
end
a = createa()
a.train!()
Linux: Versions 1.7.2 and 1.7.3 on x86_64 and version 1.7.0 on aarch64 exhibit the problem.
Windows 10: Version 1.6.2 on x86_64 crashes the REPL.
Linux: Version 1.4.2 on x86_64 does not have the problem.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment