With LoopVectorization
you can go even faster.
function h(x)
s = zero(eltype(x))
@turbo for i in eachindex(x)
s += x[i]*0
end
return isfinite(s)
end
With LoopVectorization
you can go even faster.
function h(x)
s = zero(eltype(x))
@turbo for i in eachindex(x)
s += x[i]*0
end
return isfinite(s)
end