From d2c7a3a1d1e2195b2f03dd00f37e5ba8ac0bce62 Mon Sep 17 00:00:00 2001 From: Gerd Wachsmuth Date: Fri, 26 Jul 2024 15:55:20 +0200 Subject: [PATCH] Update api.md `A_mul_B!` has been superseeded by `mul!`. --- docs/src/api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/api.md b/docs/src/api.md index 56e4675a..5269d5a3 100644 --- a/docs/src/api.md +++ b/docs/src/api.md @@ -140,7 +140,7 @@ additional loop unrolling and inlining, and consequentially (c) their mutating methods like `map!` are extremely fast. Benchmarking shows that operations such as addition and matrix multiplication are faster for `MMatrix` than `Matrix`, at least for sizes up to 14 × 14, though keep in mind that optimal speed will -be obtained by using mutating functions (like `map!` or `A_mul_B!`) where +be obtained by using mutating functions (like `map!` or `mul!`) where possible, rather than reallocating new memory. Mutable static arrays also happen to be very useful containers that can be