The following code hangs ```julia using Octavian A = randn(5,5) x = ones(5) b = similar(x) matmul!(b,A,x,1.0,1.0) ``` When `x`,`b` are matrix arguments, the code runs fine. For reference, I'm running on ```julia julia> versioninfo() Julia Version 1.6.1 Commit 6aaedecc44 (2021-04-23 05:59 UTC) Platform Info: OS: macOS (x86_64-apple-darwin18.7.0) CPU: Intel(R) Core(TM) i9-9880H CPU @ 2.30GHz WORD_SIZE: 64 LIBM: libopenlibm LLVM: libLLVM-11.0.1 (ORCJIT, skylake) Environment: JULIA_EDITOR = code JULIA_NUM_THREADS = 8 ```