While benchmarking allocations I stumbled upon some strange behavior that I cannot explain. I reduced it to the following example.
using StaticArrays, BenchmarkTools
vec = [1, 2, 3]
svec = SA[1, 2, 3]
fnamed(x) = 0
fanon = x -> 0
@ballocations fnamed($vec)
# Output: 0
@ballocations fanon($vec)
# Output: 0
@ballocations fnamed($svec)
# Output: 0
@ballocations fanon($svec)
# Output: 1
I don’t understand why benchmarking shows that the last call allocates. Is there some reason this would be expected or could this be a bug in BenchmarkTools? The output of @code_lowered
does not show any allocations
@code_lowered fanon(svec)
# Output:
# CodeInfo(
# 1 ─ return 0
# )