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
julia>using Metal, BenchmarkTools, LinearAlgebra
julia> N =512; A =rand(Float32, N, N); B =rand(Float32, N, N); C =rand(Float32, N, N); @btimemul!($C, $A, $B);
904.208 μs (0 allocations:0 bytes)
with AppleAcceleate
julia>using Metal, BenchmarkTools, LinearAlgebra, AppleAccelerate
julia> N =512; A =rand(Float32, N, N); B =rand(Float32, N, N); C =rand(Float32, N, N); @btimemul!($C, $A, $B);
189.125 μs (0 allocations:0 bytes)
w/o AppleAcceleate
with AppleAcceleate
discussion: https://julialang.slack.com/archives/C689Y34LE/p1691412094284679
cc: @ViralBShah @oscardssmith
The text was updated successfully, but these errors were encountered: