#julialang
```
julia> A = rand(1000,1000); B = rand(1000,1000);
julia> @btime $A * $B;
7.033 ms (3 allocations: 7.64 MiB)
julia> using BLISBLAS
julia> @btime $A * $B;
5.211 ms (3 allocations: 7.64 MiB)
```
Though the problem size is different
```
julia> A = rand(1000,1000); B = rand(1000,1000);
julia> @btime $A * $B;
7.033 ms (3 allocations: 7.64 MiB)
julia> using BLISBLAS
julia> @btime $A * $B;
5.211 ms (3 allocations: 7.64 MiB)
```
Though the problem size is different