-
Notifications
You must be signed in to change notification settings - Fork 152
Closed
Labels
Description
The 5 argument mul!
available in Julia v1.3 needs to be implemented with MArray
and SizedArray
A = @MMatrix rand(10,10)
B = @MMatrix rand(10,10)
C = @MMatrix rand(10,10)
@btime mul!($C, $A, $B)
120.922 ns (0 allocations: 0 bytes)
@btime mul!($C, $A, $B, 1.0, 1.0)
689.148 ns (4 allocations: 224 bytes)