Have you tried fixing the deprecation warnings? If you do using StaticArrays, LinearAlgebra
and change Array{T}(D,D)
to Array{T}(undef,D,D)
it takes 20 milliseconds on my system.
2 Likes
Have you tried fixing the deprecation warnings? If you do using StaticArrays, LinearAlgebra
and change Array{T}(D,D)
to Array{T}(undef,D,D)
it takes 20 milliseconds on my system.