You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On nightly Julia, f_noalias! is reported as allocating:
functionf_noalias!(x, y)
Base.mightalias(x, y) &&throw("No aliasing allowed!")
x .= y
endusing AllocCheck
versioninfo()
check_allocs(f_noalias!, Tuple{Vector{Int}, Vector{Int}})
Initially I reported this to Julia, however vtjnash says that at least one of the two internal functions that AllocCheck blames for the allocations does not allocate:
jl_genericmemory_copyto doesn't allocate, so you should file this on AllocCheck instead
The text was updated successfully, but these errors were encountered:
On nightly Julia,
f_noalias!
is reported as allocating:Initially I reported this to Julia, however vtjnash says that at least one of the two internal functions that AllocCheck blames for the allocations does not allocate:
The text was updated successfully, but these errors were encountered: