Update CpuTestSimd.cs
This commit is contained in:
parent
ee9c20d5dc
commit
e4611b6ddc
1 changed files with 86 additions and 2 deletions
|
@ -90,6 +90,48 @@ namespace Ryujinx.Tests.Cpu
|
||||||
0x8000000000000000ul, 0xFFFFFFFFFFFFFFFFul };
|
0x8000000000000000ul, 0xFFFFFFFFFFFFFFFFul };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static IEnumerable<ulong> _1H_F_()
|
||||||
|
{
|
||||||
|
yield return 0x000000000000FBFFul; // -Max Normal
|
||||||
|
yield return 0x0000000000008400ul; // -Min Normal
|
||||||
|
yield return 0x00000000000083FFul; // -Max Subnormal
|
||||||
|
yield return 0x0000000000008001ul; // -Min Subnormal
|
||||||
|
yield return 0x0000000000007BFFul; // +Max Normal
|
||||||
|
yield return 0x0000000000000400ul; // +Min Normal
|
||||||
|
yield return 0x00000000000003FFul; // +Max Subnormal
|
||||||
|
yield return 0x0000000000000001ul; // +Min Subnormal
|
||||||
|
|
||||||
|
if (!NoZeros)
|
||||||
|
{
|
||||||
|
yield return 0x0000000000008000ul; // -Zero
|
||||||
|
yield return 0x0000000000000000ul; // +Zero
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!NoInfs)
|
||||||
|
{
|
||||||
|
yield return 0x000000000000FC00ul; // -Infinity
|
||||||
|
yield return 0x0000000000007C00ul; // +Infinity
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!NoNaNs)
|
||||||
|
{
|
||||||
|
yield return 0x000000000000FE00ul; // -QNaN (all zeros payload)
|
||||||
|
yield return 0x000000000000FDFFul; // -SNaN (all ones payload)
|
||||||
|
yield return 0x0000000000007E00ul; // +QNaN (all zeros payload) (DefaultNaN)
|
||||||
|
yield return 0x0000000000007DFFul; // +SNaN (all ones payload)
|
||||||
|
}
|
||||||
|
|
||||||
|
for (int cnt = 1; cnt <= RndCnt; cnt++)
|
||||||
|
{
|
||||||
|
ulong grbg = TestContext.CurrentContext.Random.NextUShort();
|
||||||
|
ulong rnd1 = GenNormalH();
|
||||||
|
ulong rnd2 = GenSubnormalH();
|
||||||
|
|
||||||
|
yield return (grbg << 48) | (grbg << 32) | (grbg << 16) | rnd1;
|
||||||
|
yield return (grbg << 48) | (grbg << 32) | (grbg << 16) | rnd2;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private static IEnumerable<ulong> _4H_F_()
|
private static IEnumerable<ulong> _4H_F_()
|
||||||
{
|
{
|
||||||
yield return 0xFBFFFBFFFBFFFBFFul; // -Max Normal
|
yield return 0xFBFFFBFFFBFFFBFFul; // -Max Normal
|
||||||
|
@ -123,8 +165,8 @@ namespace Ryujinx.Tests.Cpu
|
||||||
|
|
||||||
for (int cnt = 1; cnt <= RndCnt; cnt++)
|
for (int cnt = 1; cnt <= RndCnt; cnt++)
|
||||||
{
|
{
|
||||||
uint rnd1 = (uint)GenNormalH();
|
ulong rnd1 = GenNormalH();
|
||||||
uint rnd2 = (uint)GenSubnormalH();
|
ulong rnd2 = GenSubnormalH();
|
||||||
|
|
||||||
yield return (rnd1 << 48) | (rnd1 << 32) | (rnd1 << 16) | rnd1;
|
yield return (rnd1 << 48) | (rnd1 << 32) | (rnd1 << 16) | rnd1;
|
||||||
yield return (rnd2 << 48) | (rnd2 << 32) | (rnd2 << 16) | rnd2;
|
yield return (rnd2 << 48) | (rnd2 << 32) | (rnd2 << 16) | rnd2;
|
||||||
|
@ -585,6 +627,22 @@ namespace Ryujinx.Tests.Cpu
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static uint[] _F_Cvt_S_SH_()
|
||||||
|
{
|
||||||
|
return new uint[]
|
||||||
|
{
|
||||||
|
0x1E23C020u // FCVT H0, S1
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
private static uint[] _F_Cvt_S_HS_()
|
||||||
|
{
|
||||||
|
return new uint[]
|
||||||
|
{
|
||||||
|
0x1EE24020u // FCVT S0, H1
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
private static uint[] _F_Cvt_NZ_SU_S_S_()
|
private static uint[] _F_Cvt_NZ_SU_S_S_()
|
||||||
{
|
{
|
||||||
return new uint[]
|
return new uint[]
|
||||||
|
@ -1590,6 +1648,32 @@ namespace Ryujinx.Tests.Cpu
|
||||||
CompareAgainstUnicorn();
|
CompareAgainstUnicorn();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[Test, Pairwise] [Explicit]
|
||||||
|
public void F_Cvt_S_SH([ValueSource("_F_Cvt_S_SH_")] uint opcodes,
|
||||||
|
[ValueSource("_1S_F_")] ulong a)
|
||||||
|
{
|
||||||
|
ulong z = TestContext.CurrentContext.Random.NextULong();
|
||||||
|
Vector128<float> v0 = MakeVectorE0E1(z, z);
|
||||||
|
Vector128<float> v1 = MakeVectorE0(a);
|
||||||
|
|
||||||
|
SingleOpcode(opcodes, v0: v0, v1: v1);
|
||||||
|
|
||||||
|
CompareAgainstUnicorn();
|
||||||
|
}
|
||||||
|
|
||||||
|
[Test, Pairwise] [Explicit]
|
||||||
|
public void F_Cvt_S_HS([ValueSource("_F_Cvt_S_HS_")] uint opcodes,
|
||||||
|
[ValueSource("_1H_F_")] ulong a)
|
||||||
|
{
|
||||||
|
ulong z = TestContext.CurrentContext.Random.NextULong();
|
||||||
|
Vector128<float> v0 = MakeVectorE0E1(z, z);
|
||||||
|
Vector128<float> v1 = MakeVectorE0(a);
|
||||||
|
|
||||||
|
SingleOpcode(opcodes, v0: v0, v1: v1);
|
||||||
|
|
||||||
|
CompareAgainstUnicorn();
|
||||||
|
}
|
||||||
|
|
||||||
[Test, Pairwise] [Explicit]
|
[Test, Pairwise] [Explicit]
|
||||||
public void F_Cvt_NZ_SU_S_S([ValueSource("_F_Cvt_NZ_SU_S_S_")] uint opcodes,
|
public void F_Cvt_NZ_SU_S_S([ValueSource("_F_Cvt_NZ_SU_S_S_")] uint opcodes,
|
||||||
[ValueSource("_1S_F_W_")] ulong a)
|
[ValueSource("_1S_F_W_")] ulong a)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue