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
using StaticArrays, HybridArrays
typeof(SA[10;01]*HybridArray{Tuple{2,StaticArrays.Dynamic()}}([10;01]))
Returns Array{Int64,2}. However it can be determined at compile-time that this is actually a 2*n matrix, hence HybridArray{Tuple{2,StaticArrays.Dynamic()}}.
The text was updated successfully, but these errors were encountered:
Good point, I'm just not sure how to do it right. LoopVectorization.jl has quite a bit of related functionality that can use static dimensions of arrays so just multiplying wrapped arrays and wrapping the result doesn't look like the best solution.
Returns
Array{Int64,2}
. However it can be determined at compile-time that this is actually a 2*n matrix, henceHybridArray{Tuple{2,StaticArrays.Dynamic()}}
.The text was updated successfully, but these errors were encountered: