Skip to content

Commit fb19729

Browse files
committed
Minor cleanup
1 parent b3660a0 commit fb19729

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/IntervalArithmeticLinearAlgebraExt.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ function _matmul_rec!(C, A, B)
206206
end
207207

208208
function _add_matmul_rec!(m, n, p, i0, j0, k0, C, A, B)
209-
if m + n + p 256 # base case: naive matmult for sufficiently large matrices
209+
if m + n + p 256 # naive matmul for sufficiently small matrices
210210
for i 1:m, k 1:p
211211
c = zero(eltype(C))
212212
for j 1:n

0 commit comments

Comments
 (0)