Пример #1
0
            public void RunStructFldScenario(SimpleBinaryOpTest__XorUInt32 testClass)
            {
                var result = Sse2.Xor(_fld1, _fld2);

                Unsafe.Write(testClass._dataTable.outArrayPtr, result);
                testClass.ValidateResult(_fld1, _fld2, testClass._dataTable.outArrayPtr);
            }
Пример #2
0
        public void RunLclFldScenario()
        {
            var test   = new SimpleBinaryOpTest__XorUInt32();
            var result = Sse2.Xor(test._fld1, test._fld2);

            Unsafe.Write(_dataTable.outArrayPtr, result);
            ValidateResult(test._fld1, test._fld2, _dataTable.outArrayPtr);
        }
Пример #3
0
        public void RunClassLclFldScenario()
        {
            TestLibrary.TestFramework.BeginScenario(nameof(RunClassLclFldScenario));

            var test   = new SimpleBinaryOpTest__XorUInt32();
            var result = Sse2.Xor(test._fld1, test._fld2);

            Unsafe.Write(_dataTable.outArrayPtr, result);
            ValidateResult(test._fld1, test._fld2, _dataTable.outArrayPtr);
        }
Пример #4
0
        private static void XorUInt32()
        {
            var test = new SimpleBinaryOpTest__XorUInt32();

            if (test.IsSupported)
            {
                // Validates basic functionality works, using Unsafe.Read
                test.RunBasicScenario_UnsafeRead();

                // Validates basic functionality works, using Load
                test.RunBasicScenario_Load();

                // Validates basic functionality works, using LoadAligned
                test.RunBasicScenario_LoadAligned();

                // Validates calling via reflection works, using Unsafe.Read
                test.RunReflectionScenario_UnsafeRead();

                // Validates calling via reflection works, using Load
                test.RunReflectionScenario_Load();

                // Validates calling via reflection works, using LoadAligned
                test.RunReflectionScenario_LoadAligned();

                // Validates passing a static member works
                test.RunClsVarScenario();

                // Validates passing a local works, using Unsafe.Read
                test.RunLclVarScenario_UnsafeRead();

                // Validates passing a local works, using Load
                test.RunLclVarScenario_Load();

                // Validates passing a local works, using LoadAligned
                test.RunLclVarScenario_LoadAligned();

                // 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.");
            }
        }
Пример #5
0
            public void RunStructFldScenario_Load(SimpleBinaryOpTest__XorUInt32 testClass)
            {
                fixed(Vector256 <UInt32> *pFld1 = &_fld1)
                fixed(Vector256 <UInt32> *pFld2 = &_fld2)
                {
                    var result = Avx2.Xor(
                        Avx.LoadVector256((UInt32 *)(pFld1)),
                        Avx.LoadVector256((UInt32 *)(pFld2))
                        );

                    Unsafe.Write(testClass._dataTable.outArrayPtr, result);
                    testClass.ValidateResult(_fld1, _fld2, testClass._dataTable.outArrayPtr);
                }
            }
Пример #6
0
        public void RunClassLclFldScenario_Load()
        {
            TestLibrary.TestFramework.BeginScenario(nameof(RunClassLclFldScenario_Load));

            var test = new SimpleBinaryOpTest__XorUInt32();

            fixed(Vector256 <UInt32> *pFld1 = &test._fld1)
            fixed(Vector256 <UInt32> *pFld2 = &test._fld2)
            {
                var result = Avx2.Xor(
                    Avx.LoadVector256((UInt32 *)(pFld1)),
                    Avx.LoadVector256((UInt32 *)(pFld2))
                    );

                Unsafe.Write(_dataTable.outArrayPtr, result);
                ValidateResult(test._fld1, test._fld2, _dataTable.outArrayPtr);
            }
        }