mirror of
https://github.com/luau-lang/rfcs.git
synced 2025-04-04 10:30:56 +01:00
Update function-math-fma.md
Use Luau instead of C
This commit is contained in:
parent
3f5aa5f40a
commit
4fd0d8508e
1 changed files with 8 additions and 27 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue