Skip to content

Commit a2cc5af

Browse files
committed
Update
1 parent 1a321a4 commit a2cc5af

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/matmul.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ end
205205
alloc_test(() -> MA.mutability(y, MA.add_mul, y, A, x), 0)
206206
end
207207

208-
n = BIGINT_ALLOC + (VERSION >= v"1.12.0-DEV" ? 8 : 0)
208+
n = BIGINT_ALLOC + (VERSION >= v"1.11" ? 8 : 0)
209209
alloc_test_le(() -> MA.add_mul!!(y, A, x), n)
210210
alloc_test_le(
211211
() -> MA.operate_fallback!!(MA.IsMutable(), MA.add_mul, y, A, x),
@@ -278,7 +278,7 @@ end
278278
)
279279
alloc_test(() -> MA.mutability(C, MA.add_mul, C, A, B), 0)
280280
end
281-
allocs = BIGINT_ALLOC + (VERSION >= v"1.12.0-DEV" ? 8 : 0)
281+
allocs = BIGINT_ALLOC + (VERSION >= v"1.11" ? 8 : 0)
282282
alloc_test(() -> MA.add_mul!!(C, A, B), allocs)
283283
alloc_test(() -> MA.operate!!(MA.add_mul, C, A, B), allocs)
284284
alloc_test(() -> MA.operate!(MA.add_mul, C, A, B), allocs)

0 commit comments

Comments
 (0)