Skip to content

Commit

Permalink
Update api.md
Browse files Browse the repository at this point in the history
`A_mul_B!` has been superseeded by `mul!`.
  • Loading branch information
gerw authored Jul 26, 2024
1 parent ba86ada commit d2c7a3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d2c7a3a

Please sign in to comment.