private static void SetAllVector128Byte() { bool skipIf32Bit = (typeof(Byte) == typeof(Int64)) || (typeof(Byte) == typeof(UInt64)); if (skipIf32Bit && !Environment.Is64BitProcess) { return; } var test = new ScalarSimdUnaryOpTest__SetAllVector128Byte(); if (test.IsSupported) { // Validates basic functionality works test.RunBasicScenario(); // Validates calling via reflection works test.RunReflectionScenario(); // Validates passing a static member works test.RunClsVarScenario(); // Validates passing a local works test.RunLclVarScenario(); // Validates passing the field of a local works test.RunLclFldScenario(); // Validates passing an instance member works test.RunFldScenario(); } else { // Validates we throw on unsupported hardware test.RunUnsupportedScenario(); } if (!test.Succeeded) { throw new Exception("One or more scenarios did not complete as expected."); } }
private static void SetAllVector128Byte() { var test = new ScalarSimdUnaryOpTest__SetAllVector128Byte(); if (test.IsSupported) { // Validates basic functionality works test.RunBasicScenario_UnsafeRead(); // Validates calling via reflection works test.RunReflectionScenario_UnsafeRead(); // Validates passing a static member works test.RunClsVarScenario(); // Validates passing a local works test.RunLclVarScenario_UnsafeRead(); // Validates passing the field of a local class works test.RunClassLclFldScenario(); // Validates passing an instance member of a class works test.RunClassFldScenario(); // Validates passing the field of a local struct works test.RunStructLclFldScenario(); // Validates passing an instance member of a struct works test.RunStructFldScenario(); } else { // Validates we throw on unsupported hardware test.RunUnsupportedScenario(); } if (!test.Succeeded) { throw new Exception("One or more scenarios did not complete as expected."); } }