diff --git a/docs/function-math-fma.md b/docs/function-math-fma.md index 92ef425..50850b8 100644 --- a/docs/function-math-fma.md +++ b/docs/function-math-fma.md @@ -116,5 +116,5 @@ When generating `native` code with `--!native` or `@native`, the operation shoul ## Alternatives -- Not implementing `math.fma`, remaining with the lesser optimized method of manually computing `(a * b) + c` +- Not implementing `math.fma`, remaining with the lesser optimized method of manually computing `(a * b)` followed by `a + b`. - Implementing sister functions, such as `math.fms` and/or `math.fma231`, to make full use of the [FMA instruction set](https://en.wikipedia.org/wiki/FMA_instruction_set), allowing for more delicate optimization of operations, and finer control over the order and structure of operations.