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
@testset"$method! implementation"for method! in [fastdensesparsemul!, fastdensesparsemul_threaded!]
24
-
@testset"Trial $trial"for trial in1:10
25
-
lhs =rand(T, 50, 100)
26
-
rhs =sprand(T, 100, 1_000, 0.1)
27
-
baseline = lhs * rhs
28
-
29
-
buf =similar(baseline) .*false# fill buffer with zeros. Carefull with NaNs, see https://discourse.julialang.org/t/occasionally-nans-when-using-similar/48224/12
@testset"$T type"for T in [Float64, Float32, Float16, Complex{Float32}]
3
+
@testset"$method! implementation"for method! in [fastdensesparsemul!, fastdensesparsemul_threaded!]
4
+
@testset"Trial $trial"for trial in1:10
5
+
lhs =rand(T, 50, 100)
6
+
rhs =sprand(T, 100, 1_000, 0.1)
7
+
baseline = lhs * rhs
8
+
9
+
buf =similar(baseline) .*false# fill buffer with zeros. Carefull with NaNs, see https://discourse.julialang.org/t/occasionally-nans-when-using-similar/48224/12
0 commit comments