Update function-math-fma.md

Clarified description
This commit is contained in:
Wunder Wulfe 2025-02-23 00:33:11 -03:00 committed by GitHub
parent 1af39f3c02
commit edc2949a26
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -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.