Update function-math-fma.md

Use Luau instead of C
This commit is contained in:
Wunder Wulfe 2025-02-23 04:15:28 -03:00 committed by GitHub
parent 3f5aa5f40a
commit 4fd0d8508e
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -16,18 +16,10 @@ The *two* advantages of this operation are as follows:
The example below is a dot product between two 4-dimensional vectors: The example below is a dot product between two 4-dimensional vectors:
```cpp ```luau
double dot( function Vector4.Dot( Vector4 a, Vector4 b ): number
double ax, double ay, double az, double aw, return a.X * b.X + a.Y * b.Y + a.Z * b.Z + a.W * b.W;
double bx, double by, double bz, double bw end
)
{
return
(ax * bx)
+ (ay * by)
+ (az * bz)
+ (aw * bw);
}
``` ```
This computation results in a total of `7` math instructions This computation results in a total of `7` math instructions
@ -42,21 +34,10 @@ The *two* advantages of this operation are as follows:
ADDSD xmm0, xmm3 ; + (aw * bw) ADDSD xmm0, xmm3 ; + (aw * bw)
``` ```
Algorithm simplified with `fma`: Algorithm simplified with `fma`:
```cpp ```luau
double dot( function Vector4.Dot( Vector4 a, Vector4 b ): number
double ax, double ay, double az, double aw, return math.fma( a.X, b.X, math.fma( a.Y, b.Y, math.fma( a.Z, b.Z, a.W * b.W ) ) );
double bx, double by, double bz, double bw end
)
{
return fma(
ax, bx, fma(
ay, by, fma(
az, bz,
aw * bw
)
)
);
}
``` ```
The optimization will reduce to `4` math instructions: The optimization will reduce to `4` math instructions:
```asm ```asm