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 LinearAlgebra, SparseArrays
using BenchmarkTools
julia> M =rand(500, 300);
julia> S =spzeros(size(M)...);
julia>@btimedot($M, $S);
521.241 μs (0 allocations:0 bytes)
In comparison, even materializing S as dense is better time-wise at this scale: