Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
odow committed Jan 13, 2025
1 parent 3ca3709 commit fceadb4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/matmul.jl
Original file line number Diff line number Diff line change
Expand Up @@ -281,10 +281,10 @@ end
)
alloc_test(() -> MA.mutability(C, MA.add_mul, C, A, B), 0)
end

alloc_test(() -> MA.add_mul!!(C, A, B), BIGINT_ALLOC)
alloc_test(() -> MA.operate!!(MA.add_mul, C, A, B), BIGINT_ALLOC)
alloc_test(() -> MA.operate!(MA.add_mul, C, A, B), BIGINT_ALLOC)
allocs = BIGINT_ALLOC + (VERSION >= v"1.12.0-DEV" ? 8 : 0)
alloc_test(() -> MA.add_mul!!(C, A, B), allocs)
alloc_test(() -> MA.operate!!(MA.add_mul, C, A, B), allocs)
alloc_test(() -> MA.operate!(MA.add_mul, C, A, B), allocs)
end
end

Expand Down

0 comments on commit fceadb4

Please sign in to comment.