From 4fd0d8508e7d35a78afb5be6d6341c91b15fd410 Mon Sep 17 00:00:00 2001 From: Wunder Wulfe <29297318+Wunder-Wulfe@users.noreply.github.com> Date: Sun, 23 Feb 2025 04:15:28 -0300 Subject: [PATCH] Update function-math-fma.md Use Luau instead of C --- docs/function-math-fma.md | 35 ++++++++--------------------------- 1 file changed, 8 insertions(+), 27 deletions(-) diff --git a/docs/function-math-fma.md b/docs/function-math-fma.md index 2df6fa0..4058609 100644 --- a/docs/function-math-fma.md +++ b/docs/function-math-fma.md @@ -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: - ```cpp - double dot( - double ax, double ay, double az, double aw, - double bx, double by, double bz, double bw - ) - { - return - (ax * bx) - + (ay * by) - + (az * bz) - + (aw * bw); - } + ```luau + function Vector4.Dot( Vector4 a, Vector4 b ): number + return a.X * b.X + a.Y * b.Y + a.Z * b.Z + a.W * b.W; + end ``` 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) ``` Algorithm simplified with `fma`: - ```cpp - double dot( - double ax, double ay, double az, double aw, - double bx, double by, double bz, double bw - ) - { - return fma( - ax, bx, fma( - ay, by, fma( - az, bz, - aw * bw - ) - ) - ); - } + ```luau + function Vector4.Dot( Vector4 a, Vector4 b ): number + return math.fma( a.X, b.X, math.fma( a.Y, b.Y, math.fma( a.Z, b.Z, a.W * b.W ) ) ); + end ``` The optimization will reduce to `4` math instructions: ```asm