├── .editorconfig ├── .gitignore ├── ChangeLog.md ├── Doxyfile ├── LICENSE ├── README.md ├── README_Chinese.md ├── TraitsMethodList.md ├── VectorTraits.sln ├── VectorTraits_mac.sln ├── api ├── .gitignore └── index.md ├── articles ├── BenchmarkResults │ ├── ABitUtil │ │ ├── BigMul.md │ │ ├── BigMul_Group.md │ │ ├── Clamp.md │ │ ├── Clamp_Group.md │ │ ├── ConditionalSelect.md │ │ ├── ConditionalSelect_Group.md │ │ └── README.md │ ├── AVector │ │ ├── Ceiling.md │ │ ├── Ceiling_Group.md │ │ ├── ConvertToDouble.md │ │ ├── ConvertToDouble_Group.md │ │ ├── ConvertToSingle.md │ │ ├── ConvertToSingle_Group.md │ │ ├── Multiply.md │ │ ├── Multiply_Group.md │ │ ├── Narrow.md │ │ ├── Narrow_Group.md │ │ ├── README.md │ │ ├── ShiftLeft.md │ │ ├── ShiftLeft_Group.md │ │ ├── ShiftRightArithmetic.md │ │ ├── ShiftRightArithmetic_Group.md │ │ ├── ShiftRightLogical.md │ │ ├── ShiftRightLogical_Group.md │ │ ├── Shuffle.md │ │ ├── Shuffle_Group.md │ │ ├── Widen.md │ │ ├── Widen_Group.md │ │ ├── YClamp.md │ │ ├── YClamp_Group.md │ │ ├── YGroup1ToGroup3.md │ │ ├── YGroup1ToGroup3_Group.md │ │ ├── YGroup2Transpose.md │ │ ├── YGroup2Transpose_Group.md │ │ ├── YGroup2Unzip.md │ │ ├── YGroup2Unzip_Group.md │ │ ├── YGroup3ToGroup4.md │ │ ├── YGroup3ToGroup4_Group.md │ │ ├── YGroup3Unzip.md │ │ ├── YGroup3Unzip_Group.md │ │ ├── YGroup4Unzip.md │ │ ├── YGroup4Unzip_Group.md │ │ ├── YNarrowSaturate.md │ │ ├── YNarrowSaturateUnsigned.md │ │ ├── YNarrowSaturateUnsigned_Group.md │ │ ├── YNarrowSaturate_Group.md │ │ ├── YShuffleG2.md │ │ ├── YShuffleG2_Group.md │ │ ├── YShuffleG4X2.md │ │ ├── YShuffleG4X2_Group.md │ │ ├── YShuffleX2Kernel.md │ │ └── YShuffleX2Kernel_Group.md │ ├── README.md │ └── sample.md ├── BenchmarkResultsRaw │ ├── Arm │ │ ├── AWS Arm t4g.small.txt │ │ └── Apple M2.txt │ ├── Wasm │ │ └── Wasm on AMD Ryzen 7 7840H.txt │ └── X86 │ │ ├── AMD Ryzen 7 7840H.txt │ │ └── Intel Core i5-8250U.txt ├── ReleaseNote │ ├── v1.0_Chinese.md │ ├── v2.0_Chinese.md │ ├── v3.0_Chinese.md │ └── v3.1_Chinese.md ├── VectorTraits_design.txt ├── intro.md └── toc.yml ├── docfx.json ├── docfx_clear_output.bat ├── docfx_serve.bat ├── docfx_serve_mac.sh ├── git_config.md ├── images ├── VectorTraits_logo.png ├── VectorTraits_logo_64.png ├── Vectors.ShiftLeft_Core_use_inline.png ├── Vectors.ShiftLeft_use_inline.png ├── doxyfiles │ └── mainpage.md ├── wasm_benchmark.png ├── wasm_home.png └── wasm_unit_test.png ├── index.md ├── samples ├── VectorTraits.Output │ ├── OutputVectorTraits.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ └── VectorTraits.Output.csproj ├── VectorTraits.Sample.NetFw │ ├── App.config │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── VectorTraits.Sample.NetFw.csproj │ └── packages.config ├── VectorTraits.Sample.NuGet │ └── VectorTraits.Sample.NuGet.csproj └── VectorTraits.Sample │ ├── Program.cs │ └── VectorTraits.Sample.csproj ├── src ├── VectorTraits.InfoInc │ ├── TraitsOutput.cs │ ├── VectorTraits.InfoInc.projitems │ └── VectorTraits.InfoInc.shproj └── VectorTraits │ ├── AbstractVectors.cs │ ├── BitMath.BitConverter.cs │ ├── BitMath.IBinaryInteger.cs │ ├── BitMath.IFloatingPoint.cs │ ├── BitMath.INumber.cs │ ├── BitMath.INumberBase.cs │ ├── BitMath.IRootFunctions.cs │ ├── BitMath.MathOperators.cs │ ├── BitMath.cs │ ├── Collections │ ├── FixedArray16.cs │ ├── FixedArray2.cs │ ├── FixedArray_Makes.cs │ ├── FixedArray_Makes.tt │ └── IFixedArray.cs │ ├── ExTypes │ ├── ExInt128.Ex.cs │ ├── ExInt128.cs │ ├── ExUInt128.Ex.cs │ ├── ExUInt128.cs │ └── Impl │ │ ├── BigIntegerExtensions.cs │ │ ├── EncodingExtensions.cs │ │ ├── ExBitUtil.cs │ │ ├── ExNumberFormatInfo.cs │ │ ├── FloatFormatInfo.cs │ │ ├── FormattingHelpers.CountDigits.Int128.cs │ │ ├── FormattingHelpers.CountDigits.cs │ │ ├── HexConverter.cs │ │ ├── IntegerFormatInfo.cs │ │ ├── Number.Ex.cs │ │ ├── Number.Formatting.Common.cs │ │ ├── Number.Formatting.cs │ │ ├── Number.NumberBuffer.cs │ │ ├── Number.NumberToFloatingPointBits.cs │ │ ├── Number.Parsing.Common.cs │ │ ├── Number.Parsing.cs │ │ ├── NumberFormatInfoExtensions.cs │ │ ├── Ordinal.Utf8.cs │ │ ├── Ordinal.cs │ │ ├── OrdinalCasing.cs │ │ ├── SR.cs │ │ ├── SpanExtensions.Utf8.cs │ │ ├── SpanExtensions.cs │ │ ├── ThrowHelper.cs │ │ ├── Utf16Utility.cs │ │ ├── Utf8Utility.cs │ │ └── ValueListBuilder.cs │ ├── ExVectorFormatter.cs │ ├── ExVectorUtil.cs │ ├── Extensions │ ├── SameW │ │ └── VectorSameWExtensions.cs │ ├── Vector128Extensions.cs │ ├── Vector256Extensions.cs │ ├── Vector512Extensions.cs │ ├── Vector64Extensions.cs │ └── VectorExtensions.cs │ ├── Fake │ └── Diagnostics │ │ └── CodeAnalysis │ │ └── ConstantExpectedAttribute.cs │ ├── Impl │ ├── AVector │ │ ├── VectorTraits128Abstract.Y.cs │ │ ├── VectorTraits128Abstract.cs │ │ ├── VectorTraits128AdvSimd.Supplement.cs │ │ ├── VectorTraits128AdvSimd.Y.cs │ │ ├── VectorTraits128AdvSimd.YG.cs │ │ ├── VectorTraits128AdvSimd.YI.cs │ │ ├── VectorTraits128AdvSimd.YS.cs │ │ ├── VectorTraits128AdvSimd.cs │ │ ├── VectorTraits128AdvSimdAbstract.Supplement.cs │ │ ├── VectorTraits128AdvSimdAbstract.Y.cs │ │ ├── VectorTraits128AdvSimdAbstract.cs │ │ ├── VectorTraits128AdvSimdB64.Supplement.cs │ │ ├── VectorTraits128AdvSimdB64.Y.cs │ │ ├── VectorTraits128AdvSimdB64.YG.cs │ │ ├── VectorTraits128AdvSimdB64.YS.cs │ │ ├── VectorTraits128AdvSimdB64.cs │ │ ├── VectorTraits128AdvSimdB64Abstract.Supplement.cs │ │ ├── VectorTraits128AdvSimdB64Abstract.Y.cs │ │ ├── VectorTraits128AdvSimdB64Abstract.cs │ │ ├── VectorTraits128Avx2.Supplement.cs │ │ ├── VectorTraits128Avx2.Y.cs │ │ ├── VectorTraits128Avx2.cs │ │ ├── VectorTraits128Avx2Abstract.Supplement.cs │ │ ├── VectorTraits128Avx2Abstract.Y.cs │ │ ├── VectorTraits128Avx2Abstract.cs │ │ ├── VectorTraits128Base.Supplement.cs │ │ ├── VectorTraits128Base.Y.cs │ │ ├── VectorTraits128Base.YG.cs │ │ ├── VectorTraits128Base.cs │ │ ├── VectorTraits128PackedSimd.Supplement.cs │ │ ├── VectorTraits128PackedSimd.Y.cs │ │ ├── VectorTraits128PackedSimd.YG.cs │ │ ├── VectorTraits128PackedSimd.YI.cs │ │ ├── VectorTraits128PackedSimd.YS.cs │ │ ├── VectorTraits128PackedSimd.cs │ │ ├── VectorTraits128PackedSimdAbstract.Supplement.cs │ │ ├── VectorTraits128PackedSimdAbstract.Y.cs │ │ ├── VectorTraits128PackedSimdAbstract.cs │ │ ├── VectorTraits128Sse.Supplement.cs │ │ ├── VectorTraits128Sse.Y.cs │ │ ├── VectorTraits128Sse.YG.cs │ │ ├── VectorTraits128Sse.YI.cs │ │ ├── VectorTraits128Sse.YS.cs │ │ ├── VectorTraits128Sse.cs │ │ ├── VectorTraits128SseAbstract.Supplement.cs │ │ ├── VectorTraits128SseAbstract.Y.cs │ │ ├── VectorTraits128SseAbstract.cs │ │ ├── VectorTraits256Abstract.cs │ │ ├── VectorTraits256Avx2.Supplement.cs │ │ ├── VectorTraits256Avx2.Y.cs │ │ ├── VectorTraits256Avx2.YG.cs │ │ ├── VectorTraits256Avx2.YI.cs │ │ ├── VectorTraits256Avx2.YS.cs │ │ ├── VectorTraits256Avx2.cs │ │ ├── VectorTraits256Avx2Abstract.Supplement.cs │ │ ├── VectorTraits256Avx2Abstract.Y.cs │ │ ├── VectorTraits256Avx2Abstract.cs │ │ ├── VectorTraits256Base.Supplement.cs │ │ ├── VectorTraits256Base.Y.cs │ │ ├── VectorTraits256Base.cs │ │ ├── VectorTraits512Abstract.cs │ │ ├── VectorTraits512Avx512.Supplement.cs │ │ ├── VectorTraits512Avx512.Y.cs │ │ ├── VectorTraits512Avx512.YG.cs │ │ ├── VectorTraits512Avx512.YI.cs │ │ ├── VectorTraits512Avx512.YS.cs │ │ ├── VectorTraits512Avx512.cs │ │ ├── VectorTraits512Avx512Abstract.Supplement.cs │ │ ├── VectorTraits512Avx512Abstract.Y.cs │ │ ├── VectorTraits512Avx512Abstract.cs │ │ ├── VectorTraits512Base.Supplement.cs │ │ ├── VectorTraits512Base.Y.cs │ │ ├── VectorTraits512Base.cs │ │ ├── VectorTraitsAbstract.Supplement.cs │ │ ├── VectorTraitsAbstract.Y.cs │ │ ├── VectorTraitsAbstract.cs │ │ ├── VectorTraitsBase.Supplement.cs │ │ ├── VectorTraitsBase.Y.cs │ │ ├── VectorTraitsBase.YG.cs │ │ ├── VectorTraitsBase.YI.cs │ │ ├── VectorTraitsBase.YS.cs │ │ └── VectorTraitsBase.cs │ ├── AVector128 │ │ ├── WVectorTraits128Abstract.Supplement.cs │ │ ├── WVectorTraits128Abstract.Y.cs │ │ ├── WVectorTraits128Abstract.cs │ │ ├── WVectorTraits128AdvSimd.Supplement.cs │ │ ├── WVectorTraits128AdvSimd.Y.cs │ │ ├── WVectorTraits128AdvSimd.YG.cs │ │ ├── WVectorTraits128AdvSimd.YI.cs │ │ ├── WVectorTraits128AdvSimd.YS.cs │ │ ├── WVectorTraits128AdvSimd.cs │ │ ├── WVectorTraits128AdvSimdAbstract.Supplement.cs │ │ ├── WVectorTraits128AdvSimdAbstract.Y.cs │ │ ├── WVectorTraits128AdvSimdAbstract.cs │ │ ├── WVectorTraits128AdvSimdB64.Supplement.cs │ │ ├── WVectorTraits128AdvSimdB64.Y.cs │ │ ├── WVectorTraits128AdvSimdB64.YG.cs │ │ ├── WVectorTraits128AdvSimdB64.YI.cs │ │ ├── WVectorTraits128AdvSimdB64.YS.cs │ │ ├── WVectorTraits128AdvSimdB64.cs │ │ ├── WVectorTraits128AdvSimdB64Abstract.Supplement.cs │ │ ├── WVectorTraits128AdvSimdB64Abstract.Y.cs │ │ ├── WVectorTraits128AdvSimdB64Abstract.cs │ │ ├── WVectorTraits128Avx2.Supplement.cs │ │ ├── WVectorTraits128Avx2.Y.cs │ │ ├── WVectorTraits128Avx2.YS.cs │ │ ├── WVectorTraits128Avx2.cs │ │ ├── WVectorTraits128Avx2Abstract.Supplement.cs │ │ ├── WVectorTraits128Avx2Abstract.Y.cs │ │ ├── WVectorTraits128Avx2Abstract.cs │ │ ├── WVectorTraits128Base.Supplement.cs │ │ ├── WVectorTraits128Base.Y.cs │ │ ├── WVectorTraits128Base.YG.cs │ │ ├── WVectorTraits128Base.YI.cs │ │ ├── WVectorTraits128Base.YS.cs │ │ ├── WVectorTraits128Base.cs │ │ ├── WVectorTraits128PackedSimd.Supplement.cs │ │ ├── WVectorTraits128PackedSimd.Y.cs │ │ ├── WVectorTraits128PackedSimd.YG.cs │ │ ├── WVectorTraits128PackedSimd.YI.cs │ │ ├── WVectorTraits128PackedSimd.YS.cs │ │ ├── WVectorTraits128PackedSimd.cs │ │ ├── WVectorTraits128PackedSimdAbstract.Supplement.cs │ │ ├── WVectorTraits128PackedSimdAbstract.Y.cs │ │ ├── WVectorTraits128PackedSimdAbstract.cs │ │ ├── WVectorTraits128Sse.Supplement.cs │ │ ├── WVectorTraits128Sse.Y.cs │ │ ├── WVectorTraits128Sse.YG.cs │ │ ├── WVectorTraits128Sse.YI.cs │ │ ├── WVectorTraits128Sse.YS.cs │ │ ├── WVectorTraits128Sse.cs │ │ ├── WVectorTraits128SseAbstract.Supplement.cs │ │ ├── WVectorTraits128SseAbstract.Y.cs │ │ └── WVectorTraits128SseAbstract.cs │ ├── AVector256 │ │ ├── WVectorTraits256Abstract.Supplement.cs │ │ ├── WVectorTraits256Abstract.Y.cs │ │ ├── WVectorTraits256Abstract.cs │ │ ├── WVectorTraits256Avx2.Supplement.cs │ │ ├── WVectorTraits256Avx2.Y.cs │ │ ├── WVectorTraits256Avx2.YG.cs │ │ ├── WVectorTraits256Avx2.YI.cs │ │ ├── WVectorTraits256Avx2.YS.cs │ │ ├── WVectorTraits256Avx2.cs │ │ ├── WVectorTraits256Avx2Abstract.Supplement.cs │ │ ├── WVectorTraits256Avx2Abstract.Y.cs │ │ ├── WVectorTraits256Avx2Abstract.cs │ │ ├── WVectorTraits256Base.Supplement.cs │ │ ├── WVectorTraits256Base.Y.cs │ │ ├── WVectorTraits256Base.YG.cs │ │ ├── WVectorTraits256Base.YI.cs │ │ ├── WVectorTraits256Base.YS.cs │ │ └── WVectorTraits256Base.cs │ ├── AVector512 │ │ ├── WVectorTraits512Abstract.Supplement.cs │ │ ├── WVectorTraits512Abstract.Y.cs │ │ ├── WVectorTraits512Abstract.cs │ │ ├── WVectorTraits512Avx512.Supplement.cs │ │ ├── WVectorTraits512Avx512.Y.cs │ │ ├── WVectorTraits512Avx512.YG.cs │ │ ├── WVectorTraits512Avx512.YI.cs │ │ ├── WVectorTraits512Avx512.YS.cs │ │ ├── WVectorTraits512Avx512.cs │ │ ├── WVectorTraits512Avx512Abstract.Supplement.cs │ │ ├── WVectorTraits512Avx512Abstract.Y.cs │ │ ├── WVectorTraits512Avx512Abstract.cs │ │ ├── WVectorTraits512Base.Supplement.cs │ │ ├── WVectorTraits512Base.Y.cs │ │ ├── WVectorTraits512Base.YG.cs │ │ ├── WVectorTraits512Base.YI.cs │ │ ├── WVectorTraits512Base.YS.cs │ │ └── WVectorTraits512Base.cs │ ├── Attributes │ │ └── FakeRequiresUnreferencedCodeAttribute.cs │ ├── BitOfByte.cs │ ├── Delegates │ │ └── FuncDelegates.cs │ ├── FloatRoundMode.cs │ ├── IBaseTraits.cs │ ├── IVectorTraits.Supplement.cs │ ├── IVectorTraits.Y.cs │ ├── IVectorTraits.cs │ ├── IVectorTraits_Extensions.Y.cs │ ├── IVectorTraits_Extensions.YG.cs │ ├── IVectorTraits_Extensions.cs │ ├── IWVectorTraits.cs │ ├── IWVectorTraits128.Supplement.cs │ ├── IWVectorTraits128.Y.cs │ ├── IWVectorTraits128.cs │ ├── IWVectorTraits128_Extensions.Y.cs │ ├── IWVectorTraits128_Extensions.YG.cs │ ├── IWVectorTraits128_Extensions.cs │ ├── IWVectorTraits256.Supplement.cs │ ├── IWVectorTraits256.Y.cs │ ├── IWVectorTraits256.cs │ ├── IWVectorTraits256_Extensions.Y.cs │ ├── IWVectorTraits256_Extensions.YG.cs │ ├── IWVectorTraits256_Extensions.cs │ ├── IWVectorTraits512.Supplement.cs │ ├── IWVectorTraits512.Y.cs │ ├── IWVectorTraits512.cs │ ├── IWVectorTraits512_Extensions.Y.cs │ ├── IWVectorTraits512_Extensions.YG.cs │ ├── IWVectorTraits512_Extensions.cs │ ├── ReflectionUtil.cs │ ├── ScalarConstants.cs │ ├── ShuffleControl2X4Use4.cs │ ├── ShuffleControlG2On256.cs │ ├── ShuffleControlG2On512.cs │ ├── TernaryLogicControl.cs │ ├── Util │ │ ├── CpuDetectionHelper.cs │ │ ├── ProcessUtil.cs │ │ └── UnsafeUtil.cs │ ├── Vector128Constants.YG.cs │ ├── Vector128Constants.cs │ ├── Vector128Generic.cs │ ├── Vector128_Shuffle.cs │ ├── Vector256Constants.YG.cs │ ├── Vector256Constants.cs │ ├── Vector256Generic.cs │ ├── Vector256_Shuffle.cs │ ├── Vector512Constants.YG.cs │ ├── Vector512Constants.cs │ ├── Vector512Generic.cs │ ├── Vector64Constants.cs │ ├── VectorConstants.cs │ ├── VectorGeneric.cs │ ├── VectorMessageFormats.cs │ ├── Vector_Shuffle.cs │ ├── WrappedType.cs │ └── WrappedTypePool.cs │ ├── Numerics │ ├── BitMathCore.cs │ ├── CallIBinaryInteger.cs │ ├── CallIBinaryNumber.cs │ ├── CallINumberBase.cs │ ├── MathBinaryPrimitives.cs │ ├── MathBitConverter.cs │ ├── MathBitOperations.cs │ ├── MathIBinaryInteger.cs │ ├── MathIFloatingPoint.cs │ ├── MathINumber.cs │ ├── MathINumberBase.cs │ ├── MathIRootFunctions.cs │ └── MathOperators.cs │ ├── Scalars.T.cs │ ├── Scalars.cs │ ├── ShuffleControlG2.cs │ ├── ShuffleControlG4.cs │ ├── Tuples │ ├── Vector128X2.cs │ ├── Vector128X3.cs │ ├── Vector128X4.cs │ ├── Vector128X5.cs │ ├── Vector128X6.cs │ ├── Vector128X7.cs │ ├── Vector128X8.cs │ ├── Vector128XTuple.cs │ ├── Vector128XTuple_Extensions.cs │ ├── Vector128XTuple_Extensions.tt │ ├── Vector256X2.cs │ ├── Vector256X3.cs │ ├── Vector256X4.cs │ ├── Vector256X5.cs │ ├── Vector256X6.cs │ ├── Vector256X7.cs │ ├── Vector256X8.cs │ ├── Vector256XTuple.cs │ ├── Vector256XTuple_Extensions.cs │ ├── Vector256XTuple_Extensions.tt │ ├── VectorX2.cs │ ├── VectorX3.cs │ ├── VectorX4.cs │ ├── VectorX5.cs │ ├── VectorX6.cs │ ├── VectorX7.cs │ ├── VectorX8.cs │ ├── VectorXTuple.cs │ ├── VectorXTuple_Extensions.cs │ └── VectorXTuple_Extensions.tt │ ├── TypeCodeFlagsUtil.cs │ ├── Vector128s.Ex.cs │ ├── Vector128s.ExType.cs │ ├── Vector128s.Extensions.Y.cs │ ├── Vector128s.Extensions.YG.cs │ ├── Vector128s.Extensions.cs │ ├── Vector128s.T.cs │ ├── Vector128s.Traits.Supplement.cs │ ├── Vector128s.Traits.Y.cs │ ├── Vector128s.Traits.cs │ ├── Vector128s.cs │ ├── Vector256s.Ex.cs │ ├── Vector256s.ExType.cs │ ├── Vector256s.Extensions.Y.cs │ ├── Vector256s.Extensions.YG.cs │ ├── Vector256s.Extensions.cs │ ├── Vector256s.T.cs │ ├── Vector256s.Traits.Supplement.cs │ ├── Vector256s.Traits.Y.cs │ ├── Vector256s.Traits.cs │ ├── Vector256s.cs │ ├── Vector512s.Ex.cs │ ├── Vector512s.ExType.cs │ ├── Vector512s.Extensions.Y.cs │ ├── Vector512s.Extensions.YG.cs │ ├── Vector512s.Extensions.cs │ ├── Vector512s.T.cs │ ├── Vector512s.Traits.Supplement.cs │ ├── Vector512s.Traits.Y.cs │ ├── Vector512s.Traits.cs │ ├── Vector512s.cs │ ├── Vector64s.Ex.cs │ ├── Vector64s.ExType.cs │ ├── Vector64s.T.cs │ ├── Vector64s.cs │ ├── VectorEnvironment.cs │ ├── VectorTextUtil.cs │ ├── VectorTraits.csproj │ ├── VectorTraitsGlobal.cs │ ├── Vectors.Ex.cs │ ├── Vectors.ExType.cs │ ├── Vectors.Extensions.Y.cs │ ├── Vectors.Extensions.YG.cs │ ├── Vectors.Extensions.cs │ ├── Vectors.T.cs │ ├── Vectors.Traits.Supplement.cs │ ├── Vectors.Traits.Y.cs │ ├── Vectors.Traits.cs │ └── Vectors.cs ├── test.runsettings ├── tests ├── BenchmarkDotNet.Mock │ ├── Attributes │ │ ├── BenchmarkAttribute.cs │ │ ├── DisassemblyDiagnoserAttribute.cs │ │ ├── GlobalSetupAttribute.cs │ │ ├── ParamsSourceAttribute.cs │ │ ├── PriorityAttribute.cs │ │ └── TargetedAttribute.cs │ ├── BenchmarkDotNet.Mock.projitems │ └── BenchmarkDotNet.Mock.shproj ├── CombineBenchmarks.bat ├── RunBenchmarks.bat ├── RunBenchmarks_All.bat ├── RunBenchmarks_Combine.sh ├── VectorTraits.Benchmarks.Core.Inc │ ├── AbstractBenchmark.cs │ ├── AbstractBenchmarkWriter.cs │ ├── AbstractSharedBenchmark.cs │ ├── AbstractSharedBenchmark_Byte.cs │ ├── AbstractSharedBenchmark_Double.cs │ ├── AbstractSharedBenchmark_Double_Single.cs │ ├── AbstractSharedBenchmark_Int128.cs │ ├── AbstractSharedBenchmark_Int16.cs │ ├── AbstractSharedBenchmark_Int16_Byte.cs │ ├── AbstractSharedBenchmark_Int16_SByte.cs │ ├── AbstractSharedBenchmark_Int32.cs │ ├── AbstractSharedBenchmark_Int32_Int16.cs │ ├── AbstractSharedBenchmark_Int32_Int64.cs │ ├── AbstractSharedBenchmark_Int32_Single.cs │ ├── AbstractSharedBenchmark_Int32_UInt16.cs │ ├── AbstractSharedBenchmark_Int64.cs │ ├── AbstractSharedBenchmark_Int64_Double.cs │ ├── AbstractSharedBenchmark_Int64_Int32.cs │ ├── AbstractSharedBenchmark_Int64_UInt32.cs │ ├── AbstractSharedBenchmark_SByte.cs │ ├── AbstractSharedBenchmark_SByte_Int16.cs │ ├── AbstractSharedBenchmark_Single.cs │ ├── AbstractSharedBenchmark_Single_Double.cs │ ├── AbstractSharedBenchmark_Single_Int32.cs │ ├── AbstractSharedBenchmark_Single_UInt32.cs │ ├── AbstractSharedBenchmark_UInt16.cs │ ├── AbstractSharedBenchmark_UInt16_Byte.cs │ ├── AbstractSharedBenchmark_UInt32.cs │ ├── AbstractSharedBenchmark_UInt32_Single.cs │ ├── AbstractSharedBenchmark_UInt32_UInt16.cs │ ├── AbstractSharedBenchmark_UInt64.cs │ ├── AbstractSharedBenchmark_UInt64_Double.cs │ ├── AbstractSharedBenchmark_UInt64_UInt32.cs │ ├── BenchmarkUtil.cs │ ├── DisableBenchmarkAttribute.cs │ ├── FakeBenchmarkAttribute.cs │ ├── IBenchmarkWriter.cs │ ├── ILoopCountGetter.cs │ ├── SimpleBenchmarkWriter.cs │ ├── TabBenchmarkWriter.cs │ ├── VectorTraits.Benchmarks.Core.Inc.projitems │ └── VectorTraits.Benchmarks.Core.Inc.shproj ├── VectorTraits.Benchmarks.Inc │ ├── ABitMath │ │ ├── BigMulBenchmark_UInt64.cs │ │ ├── ClampBenchmark_Int16.cs │ │ ├── ClampBenchmark_Int32.cs │ │ ├── ConditionalSelectBenchmark_Int16.cs │ │ └── ConditionalSelectBenchmark_Int32.cs │ ├── AVector │ │ ├── C │ │ │ ├── CeilingBenchmark_Double.cs │ │ │ ├── CeilingBenchmark_Single.cs │ │ │ ├── ConvertToDoubleBenchmark_Int64.cs │ │ │ ├── ConvertToDoubleBenchmark_UInt64.cs │ │ │ ├── ConvertToInt32Benchmark_Single.cs │ │ │ ├── ConvertToInt64Benchmark_Double.cs │ │ │ ├── ConvertToSingleBenchmark_Int32.cs │ │ │ ├── ConvertToSingleBenchmark_UInt32.cs │ │ │ ├── ConvertToUInt32Benchmark_Single.cs │ │ │ └── ConvertToUInt64Benchmark_Double.cs │ │ ├── F │ │ │ ├── FloorBenchmark_Double.cs │ │ │ └── FloorBenchmark_Single.cs │ │ ├── M │ │ │ ├── MultiplyBenchmark_Double.cs │ │ │ ├── MultiplyBenchmark_Int16.cs │ │ │ ├── MultiplyBenchmark_Int32.cs │ │ │ ├── MultiplyBenchmark_SByte.cs │ │ │ ├── MultiplyBenchmark_Single.cs │ │ │ ├── MultiplyBenchmark_UInt32.cs │ │ │ └── MultiplyBenchmark_UInt64.cs │ │ ├── N │ │ │ ├── NarrowBenchmark_Double.cs │ │ │ ├── NarrowBenchmark_Int16.cs │ │ │ └── NarrowBenchmark_Int64.cs │ │ ├── S │ │ │ ├── ShiftLeftBenchmark_Byte.cs │ │ │ ├── ShiftLeftBenchmark_Int16.cs │ │ │ ├── ShiftLeftBenchmark_Int32.cs │ │ │ ├── ShiftLeftBenchmark_Int64.cs │ │ │ ├── ShiftLeftBenchmark_SByte.cs │ │ │ ├── ShiftLeftConstBenchmark_Byte.cs │ │ │ ├── ShiftLeftConstBenchmark_Int16.cs │ │ │ ├── ShiftLeftConstBenchmark_Int32.cs │ │ │ ├── ShiftLeftConstBenchmark_Int64.cs │ │ │ ├── ShiftRightArithmeticBenchmark_Int16.cs │ │ │ ├── ShiftRightArithmeticBenchmark_Int32.cs │ │ │ ├── ShiftRightArithmeticBenchmark_Int64.cs │ │ │ ├── ShiftRightArithmeticBenchmark_SByte.cs │ │ │ ├── ShiftRightArithmeticConstBenchmark_Int16.cs │ │ │ ├── ShiftRightArithmeticConstBenchmark_Int32.cs │ │ │ ├── ShiftRightArithmeticConstBenchmark_Int64.cs │ │ │ ├── ShiftRightArithmeticConstBenchmark_SByte.cs │ │ │ ├── ShiftRightLogicalBenchmark_Byte.cs │ │ │ ├── ShiftRightLogicalBenchmark_UInt16.cs │ │ │ ├── ShiftRightLogicalBenchmark_UInt32.cs │ │ │ ├── ShiftRightLogicalBenchmark_UInt64.cs │ │ │ ├── ShiftRightLogicalConstBenchmark_Byte.cs │ │ │ ├── ShiftRightLogicalConstBenchmark_UInt16.cs │ │ │ ├── ShiftRightLogicalConstBenchmark_UInt32.cs │ │ │ ├── ShiftRightLogicalConstBenchmark_UInt64.cs │ │ │ ├── ShuffleBenchmark_Int16.cs │ │ │ ├── ShuffleBenchmark_Int32.cs │ │ │ ├── ShuffleBenchmark_Int64.cs │ │ │ └── ShuffleBenchmark_SByte.cs │ │ ├── W │ │ │ ├── WidenBenchmark_Int32.cs │ │ │ ├── WidenBenchmark_SByte.cs │ │ │ └── WidenBenchmark_Single.cs │ │ ├── YC │ │ │ ├── YClampBenchmark_Double.cs │ │ │ ├── YClampBenchmark_Int16.cs │ │ │ ├── YClampBenchmark_Int32.cs │ │ │ ├── YClampBenchmark_Int64.cs │ │ │ ├── YClampBenchmark_SByte.cs │ │ │ └── YClampBenchmark_Single.cs │ │ ├── YG │ │ │ ├── YGroup1ToGroup3Benchmark_Byte.cs │ │ │ ├── YGroup1ToGroup3Benchmark_Int16.cs │ │ │ ├── YGroup1ToGroup3Benchmark_Int32.cs │ │ │ ├── YGroup1ToGroup3Benchmark_Int64.cs │ │ │ ├── YGroup2TransposeBenchmark_Byte.cs │ │ │ ├── YGroup2TransposeBenchmark_Int16.cs │ │ │ ├── YGroup2TransposeBenchmark_Int32.cs │ │ │ ├── YGroup2TransposeBenchmark_Int64.cs │ │ │ ├── YGroup2UnzipBenchmark_Byte.cs │ │ │ ├── YGroup2UnzipBenchmark_Int128.cs │ │ │ ├── YGroup2UnzipBenchmark_Int128_B.cs │ │ │ ├── YGroup2UnzipBenchmark_Int16.cs │ │ │ ├── YGroup2UnzipBenchmark_Int32.cs │ │ │ ├── YGroup2UnzipBenchmark_Int64.cs │ │ │ ├── YGroup2ZipBenchmark_Byte.cs │ │ │ ├── YGroup2ZipBenchmark_Int128.cs │ │ │ ├── YGroup2ZipBenchmark_Int16.cs │ │ │ ├── YGroup2ZipBenchmark_Int32.cs │ │ │ ├── YGroup2ZipBenchmark_Int64.cs │ │ │ ├── YGroup3ToGroup4Benchmark_Byte.cs │ │ │ ├── YGroup3ToGroup4Benchmark_Int16.cs │ │ │ ├── YGroup3ToGroup4Benchmark_Int32.cs │ │ │ ├── YGroup3ToGroup4Benchmark_Int64.cs │ │ │ ├── YGroup3UnzipBenchmark_Byte.cs │ │ │ ├── YGroup3UnzipBenchmark_Int16.cs │ │ │ ├── YGroup3UnzipBenchmark_Int32.cs │ │ │ ├── YGroup3UnzipBenchmark_Int64.cs │ │ │ ├── YGroup3ZipBenchmark_Byte.cs │ │ │ ├── YGroup3ZipBenchmark_Int16.cs │ │ │ ├── YGroup3ZipBenchmark_Int32.cs │ │ │ ├── YGroup3ZipBenchmark_Int64.cs │ │ │ ├── YGroup4ToGroup3Benchmark_Byte.cs │ │ │ ├── YGroup4ToGroup3Benchmark_Int16.cs │ │ │ ├── YGroup4ToGroup3Benchmark_Int32.cs │ │ │ ├── YGroup4ToGroup3Benchmark_Int64.cs │ │ │ ├── YGroup4UnzipBenchmark_Byte.cs │ │ │ ├── YGroup4UnzipBenchmark_Int128.cs │ │ │ ├── YGroup4UnzipBenchmark_Int16.cs │ │ │ ├── YGroup4UnzipBenchmark_Int32.cs │ │ │ ├── YGroup4UnzipBenchmark_Int64.cs │ │ │ ├── YGroup4ZipBenchmark_Byte.cs │ │ │ ├── YGroup4ZipBenchmark_Int128.cs │ │ │ ├── YGroup4ZipBenchmark_Int16.cs │ │ │ ├── YGroup4ZipBenchmark_Int32.cs │ │ │ └── YGroup4ZipBenchmark_Int64.cs │ │ ├── YN │ │ │ ├── YNarrowSaturateBenchmark_Int16.cs │ │ │ ├── YNarrowSaturateBenchmark_Int32.cs │ │ │ ├── YNarrowSaturateBenchmark_Int64.cs │ │ │ ├── YNarrowSaturateBenchmark_UInt16.cs │ │ │ ├── YNarrowSaturateBenchmark_UInt32.cs │ │ │ ├── YNarrowSaturateBenchmark_UInt64.cs │ │ │ ├── YNarrowSaturateUnsignedBenchmark_Int16.cs │ │ │ ├── YNarrowSaturateUnsignedBenchmark_Int32.cs │ │ │ └── YNarrowSaturateUnsignedBenchmark_Int64.cs │ │ ├── YR │ │ │ ├── YRoundToEvenBenchmark_Double.cs │ │ │ ├── YRoundToEvenBenchmark_Single.cs │ │ │ ├── YRoundToZeroBenchmark_Double.cs │ │ │ └── YRoundToZeroBenchmark_Single.cs │ │ └── YS │ │ │ ├── YShuffleG2Benchmark_Int16.cs │ │ │ ├── YShuffleG2Benchmark_Int32.cs │ │ │ ├── YShuffleG2Benchmark_Int64.cs │ │ │ ├── YShuffleG2Benchmark_SByte.cs │ │ │ ├── YShuffleG4X2Benchmark_Int16.cs │ │ │ ├── YShuffleG4X2Benchmark_Int32.cs │ │ │ ├── YShuffleG4X2Benchmark_Int64.cs │ │ │ ├── YShuffleG4X2Benchmark_SByte.cs │ │ │ ├── YShuffleX2KernelBenchmark_Byte.cs │ │ │ ├── YShuffleX2KernelBenchmark_Int16.cs │ │ │ ├── YShuffleX2KernelBenchmark_Int32.cs │ │ │ ├── YShuffleX2KernelBenchmark_Int64.cs │ │ │ ├── YShuffleX3KernelBenchmark_Byte.cs │ │ │ ├── YShuffleX3KernelBenchmark_Int16.cs │ │ │ ├── YShuffleX3KernelBenchmark_Int32.cs │ │ │ ├── YShuffleX3KernelBenchmark_Int64.cs │ │ │ ├── YShuffleX4KernelBenchmark_Byte.cs │ │ │ ├── YShuffleX4KernelBenchmark_Int16.cs │ │ │ ├── YShuffleX4KernelBenchmark_Int32.cs │ │ │ └── YShuffleX4KernelBenchmark_Int64.cs │ ├── AloneTestUtil.cs │ ├── BenchmarkMain.cs │ ├── IntroDisassemblyDry.cs │ ├── VectorTraits.Benchmarks.Inc.projitems │ └── VectorTraits.Benchmarks.Inc.shproj ├── VectorTraits.Benchmarks.NetCore │ ├── Program.cs │ └── VectorTraits.Benchmarks.NetCore.csproj ├── VectorTraits.Benchmarks.NetFw │ ├── App.config │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── VectorTraits.Benchmarks.NetFw.csproj │ └── packages.config ├── VectorTraits.Benchmarks.Wasm │ ├── App.razor │ ├── Layout │ │ ├── MainLayout.razor │ │ ├── MainLayout.razor.css │ │ ├── NavMenu.razor │ │ └── NavMenu.razor.css │ ├── NUnitOnWasm │ │ ├── TestRunner │ │ │ ├── AssemblyTestListener.cs │ │ │ └── WasmRunner.cs │ │ └── WasmDefaultTestAssemblyBuilder.cs │ ├── Pages │ │ ├── Counter.razor │ │ ├── Home.razor │ │ ├── ViewBenchmark.razor │ │ ├── ViewUnitTest.razor │ │ └── Weather.razor │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── VectorTraits.Benchmarks.Wasm.csproj │ ├── _Imports.razor │ └── wwwroot │ │ ├── css │ │ ├── app.css │ │ └── bootstrap │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ ├── favicon.png │ │ ├── icon-192.png │ │ ├── index.html │ │ └── sample-data │ │ └── weather.json ├── VectorTraits.Benchmarks │ ├── AVector │ │ └── S │ │ │ ├── ShiftLeftBenchmark_Overload.cs │ │ │ ├── ShiftLeftBenchmark_Overload.tt │ │ │ ├── ShiftRightArithmeticBenchmark_Overload.cs │ │ │ ├── ShiftRightArithmeticBenchmark_Overload.tt │ │ │ ├── ShiftRightLogicalBenchmark_Overload.cs │ │ │ └── ShiftRightLogicalBenchmark_Overload.tt │ ├── CommonVector.ttinclude │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── VectorTraits.Benchmarks.csproj │ └── VectorTraits.Benchmarks_waitdebug.bat ├── VectorTraits.Tests.Inc │ ├── BitMathTests.cs │ ├── BitMathTests_IRootFunctions.cs │ ├── ExTypes │ │ ├── ExInt128Tests.cs │ │ └── ExUInt128Tests.cs │ ├── Impl │ │ ├── IVectorTraitsTest │ │ │ ├── VectorTests.cs │ │ │ ├── VectorTests_A.cs │ │ │ ├── VectorTests_C.cs │ │ │ ├── VectorTests_D.cs │ │ │ ├── VectorTests_E.cs │ │ │ ├── VectorTests_F.cs │ │ │ ├── VectorTests_M.cs │ │ │ ├── VectorTests_N.cs │ │ │ ├── VectorTests_S.cs │ │ │ ├── VectorTests_W.cs │ │ │ ├── VectorTests_YB.cs │ │ │ ├── VectorTests_YC.cs │ │ │ ├── VectorTests_YG.cs │ │ │ ├── VectorTests_YI.cs │ │ │ ├── VectorTests_YM.cs │ │ │ ├── VectorTests_YN.cs │ │ │ ├── VectorTests_YO.cs │ │ │ ├── VectorTests_YR.cs │ │ │ └── VectorTests_YS.cs │ │ ├── IWVectorTraits128Test │ │ │ ├── Vector128Tests.cs │ │ │ ├── Vector128Tests_A.cs │ │ │ ├── Vector128Tests_B.cs │ │ │ ├── Vector128Tests_C.cs │ │ │ ├── Vector128Tests_D.cs │ │ │ ├── Vector128Tests_E.cs │ │ │ ├── Vector128Tests_F.cs │ │ │ ├── Vector128Tests_G.cs │ │ │ ├── Vector128Tests_L.cs │ │ │ ├── Vector128Tests_M.cs │ │ │ ├── Vector128Tests_N.cs │ │ │ ├── Vector128Tests_O.cs │ │ │ ├── Vector128Tests_S.cs │ │ │ ├── Vector128Tests_W.cs │ │ │ ├── Vector128Tests_X.cs │ │ │ ├── Vector128Tests_YB.cs │ │ │ ├── Vector128Tests_YC.cs │ │ │ ├── Vector128Tests_YG.cs │ │ │ ├── Vector128Tests_YI.cs │ │ │ ├── Vector128Tests_YM.cs │ │ │ ├── Vector128Tests_YN.cs │ │ │ ├── Vector128Tests_YO.cs │ │ │ ├── Vector128Tests_YR.cs │ │ │ └── Vector128Tests_YS.cs │ │ ├── IWVectorTraits256Test │ │ │ ├── Vector256Tests.cs │ │ │ ├── Vector256Tests_A.cs │ │ │ ├── Vector256Tests_B.cs │ │ │ ├── Vector256Tests_C.cs │ │ │ ├── Vector256Tests_D.cs │ │ │ ├── Vector256Tests_E.cs │ │ │ ├── Vector256Tests_F.cs │ │ │ ├── Vector256Tests_G.cs │ │ │ ├── Vector256Tests_L.cs │ │ │ ├── Vector256Tests_M.cs │ │ │ ├── Vector256Tests_N.cs │ │ │ ├── Vector256Tests_O.cs │ │ │ ├── Vector256Tests_S.cs │ │ │ ├── Vector256Tests_W.cs │ │ │ ├── Vector256Tests_X.cs │ │ │ ├── Vector256Tests_YB.cs │ │ │ ├── Vector256Tests_YC.cs │ │ │ ├── Vector256Tests_YG.cs │ │ │ ├── Vector256Tests_YI.cs │ │ │ ├── Vector256Tests_YM.cs │ │ │ ├── Vector256Tests_YN.cs │ │ │ ├── Vector256Tests_YO.cs │ │ │ ├── Vector256Tests_YR.cs │ │ │ └── Vector256Tests_YS.cs │ │ ├── IWVectorTraits512Test │ │ │ ├── Vector512Tests.cs │ │ │ ├── Vector512Tests_A.cs │ │ │ ├── Vector512Tests_B.cs │ │ │ ├── Vector512Tests_C.cs │ │ │ ├── Vector512Tests_D.cs │ │ │ ├── Vector512Tests_E.cs │ │ │ ├── Vector512Tests_F.cs │ │ │ ├── Vector512Tests_G.cs │ │ │ ├── Vector512Tests_L.cs │ │ │ ├── Vector512Tests_M.cs │ │ │ ├── Vector512Tests_N.cs │ │ │ ├── Vector512Tests_O.cs │ │ │ ├── Vector512Tests_S.cs │ │ │ ├── Vector512Tests_W.cs │ │ │ ├── Vector512Tests_X.cs │ │ │ ├── Vector512Tests_YB.cs │ │ │ ├── Vector512Tests_YC.cs │ │ │ ├── Vector512Tests_YG.cs │ │ │ ├── Vector512Tests_YI.cs │ │ │ ├── Vector512Tests_YM.cs │ │ │ ├── Vector512Tests_YN.cs │ │ │ ├── Vector512Tests_YO.cs │ │ │ ├── Vector512Tests_YR.cs │ │ │ └── Vector512Tests_YS.cs │ │ ├── ReflectionUtilTests.cs │ │ ├── Vector128ConstantsTests.cs │ │ ├── Vector256ConstantsTests.cs │ │ ├── Vector512ConstantsTests.cs │ │ ├── VectorConstantsTests.cs │ │ └── VectorGenericTests.cs │ ├── MathTests.cs │ ├── MyTestUtil.cs │ ├── Numerics │ │ ├── BitMathCoreTests.cs │ │ ├── MathBinaryPrimitivesTests.cs │ │ ├── MathBitConverterTests.cs │ │ ├── MathIFloatingPointTests.cs │ │ ├── MathINumberBaseTests.cs │ │ ├── MathINumberTests.cs │ │ ├── MathIRootFunctionsTests.cs │ │ └── MathOperatorsTests.cs │ ├── ScalarsTests.cs │ ├── TestDataSource.cs │ ├── Tuples │ │ ├── Vector128XTupleTests.cs │ │ ├── Vector256XTupleTests.cs │ │ └── VectorXTupleTests.cs │ ├── TypeCodeFlagsUtilTests.cs │ ├── Vector128sTests.cs │ ├── Vector256sTests.cs │ ├── Vector512sTests.cs │ ├── Vector64sTests.cs │ ├── VectorTextUtilTests.cs │ ├── VectorTraits.Tests.Inc.projitems │ ├── VectorTraits.Tests.Inc.shproj │ └── VectorsTests.cs └── VectorTraits.Tests │ ├── UnitTest1.cs │ ├── VectorTraits - Backup.Tests.csproj │ └── VectorTraits.Tests.csproj ├── toc.yml └── tools ├── UpdateBenchmarkResults ├── UpdateBenchmarkResults.sln └── UpdateBenchmarkResults │ ├── Common │ ├── BenchmarkStringUtil.cs │ └── VectorTextUtil.cs │ ├── Model │ ├── AbstractBenchmarkNode.cs │ ├── BenchmarkArchitecture.cs │ ├── BenchmarkCase.cs │ ├── BenchmarkCaseRecord.cs │ ├── BenchmarkCpu.cs │ ├── BenchmarkFile.cs │ ├── BenchmarkFramework.cs │ ├── BenchmarkGroupCase.cs │ ├── BenchmarkGroupFile.cs │ ├── BenchmarkGroupPlatform.cs │ ├── BenchmarkGroupRow.cs │ ├── IBenchmarkNode.cs │ ├── ITitleGetter.cs │ ├── InputCase.cs │ └── InputFramework.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Service │ ├── BenchmarkResultsService.Group.cs │ └── BenchmarkResultsService.cs │ └── UpdateBenchmarkResults.csproj └── build ├── UpdateBenchmarkResults.bat ├── UpdateBenchmarkResults.deps.json ├── UpdateBenchmarkResults.dll ├── UpdateBenchmarkResults.exe ├── UpdateBenchmarkResults.pdb └── UpdateBenchmarkResults.runtimeconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/.gitignore -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/ChangeLog.md -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/README.md -------------------------------------------------------------------------------- /README_Chinese.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/README_Chinese.md -------------------------------------------------------------------------------- /TraitsMethodList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/TraitsMethodList.md -------------------------------------------------------------------------------- /VectorTraits.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/VectorTraits.sln -------------------------------------------------------------------------------- /VectorTraits_mac.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/VectorTraits_mac.sln -------------------------------------------------------------------------------- /api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/api/.gitignore -------------------------------------------------------------------------------- /api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/api/index.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/ABitUtil/BigMul.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/ABitUtil/BigMul.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/ABitUtil/BigMul_Group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/ABitUtil/BigMul_Group.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/ABitUtil/Clamp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/ABitUtil/Clamp.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/ABitUtil/Clamp_Group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/ABitUtil/Clamp_Group.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/ABitUtil/ConditionalSelect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/ABitUtil/ConditionalSelect.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/ABitUtil/ConditionalSelect_Group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/ABitUtil/ConditionalSelect_Group.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/ABitUtil/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/ABitUtil/README.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/AVector/Ceiling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/AVector/Ceiling.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/AVector/Ceiling_Group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/AVector/Ceiling_Group.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/AVector/ConvertToDouble.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/AVector/ConvertToDouble.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/AVector/ConvertToDouble_Group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/AVector/ConvertToDouble_Group.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/AVector/ConvertToSingle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/AVector/ConvertToSingle.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/AVector/ConvertToSingle_Group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/AVector/ConvertToSingle_Group.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/AVector/Multiply.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/AVector/Multiply.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/AVector/Multiply_Group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/AVector/Multiply_Group.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/AVector/Narrow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/AVector/Narrow.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/AVector/Narrow_Group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/AVector/Narrow_Group.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/AVector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/AVector/README.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/AVector/ShiftLeft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/AVector/ShiftLeft.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/AVector/ShiftLeft_Group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/AVector/ShiftLeft_Group.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/AVector/ShiftRightArithmetic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/AVector/ShiftRightArithmetic.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/AVector/ShiftRightArithmetic_Group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/AVector/ShiftRightArithmetic_Group.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/AVector/ShiftRightLogical.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/AVector/ShiftRightLogical.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/AVector/ShiftRightLogical_Group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/AVector/ShiftRightLogical_Group.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/AVector/Shuffle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/AVector/Shuffle.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/AVector/Shuffle_Group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/AVector/Shuffle_Group.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/AVector/Widen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/AVector/Widen.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/AVector/Widen_Group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/AVector/Widen_Group.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/AVector/YClamp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/AVector/YClamp.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/AVector/YClamp_Group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/AVector/YClamp_Group.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/AVector/YGroup1ToGroup3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/AVector/YGroup1ToGroup3.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/AVector/YGroup1ToGroup3_Group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/AVector/YGroup1ToGroup3_Group.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/AVector/YGroup2Transpose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/AVector/YGroup2Transpose.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/AVector/YGroup2Transpose_Group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/AVector/YGroup2Transpose_Group.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/AVector/YGroup2Unzip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/AVector/YGroup2Unzip.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/AVector/YGroup2Unzip_Group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/AVector/YGroup2Unzip_Group.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/AVector/YGroup3ToGroup4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/AVector/YGroup3ToGroup4.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/AVector/YGroup3ToGroup4_Group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/AVector/YGroup3ToGroup4_Group.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/AVector/YGroup3Unzip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/AVector/YGroup3Unzip.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/AVector/YGroup3Unzip_Group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/AVector/YGroup3Unzip_Group.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/AVector/YGroup4Unzip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/AVector/YGroup4Unzip.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/AVector/YGroup4Unzip_Group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/AVector/YGroup4Unzip_Group.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/AVector/YNarrowSaturate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/AVector/YNarrowSaturate.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/AVector/YNarrowSaturateUnsigned.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/AVector/YNarrowSaturateUnsigned.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/AVector/YNarrowSaturateUnsigned_Group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/AVector/YNarrowSaturateUnsigned_Group.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/AVector/YNarrowSaturate_Group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/AVector/YNarrowSaturate_Group.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/AVector/YShuffleG2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/AVector/YShuffleG2.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/AVector/YShuffleG2_Group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/AVector/YShuffleG2_Group.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/AVector/YShuffleG4X2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/AVector/YShuffleG4X2.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/AVector/YShuffleG4X2_Group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/AVector/YShuffleG4X2_Group.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/AVector/YShuffleX2Kernel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/AVector/YShuffleX2Kernel.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/AVector/YShuffleX2Kernel_Group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/AVector/YShuffleX2Kernel_Group.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/README.md -------------------------------------------------------------------------------- /articles/BenchmarkResults/sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResults/sample.md -------------------------------------------------------------------------------- /articles/BenchmarkResultsRaw/Arm/AWS Arm t4g.small.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResultsRaw/Arm/AWS Arm t4g.small.txt -------------------------------------------------------------------------------- /articles/BenchmarkResultsRaw/Arm/Apple M2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResultsRaw/Arm/Apple M2.txt -------------------------------------------------------------------------------- /articles/BenchmarkResultsRaw/Wasm/Wasm on AMD Ryzen 7 7840H.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResultsRaw/Wasm/Wasm on AMD Ryzen 7 7840H.txt -------------------------------------------------------------------------------- /articles/BenchmarkResultsRaw/X86/AMD Ryzen 7 7840H.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResultsRaw/X86/AMD Ryzen 7 7840H.txt -------------------------------------------------------------------------------- /articles/BenchmarkResultsRaw/X86/Intel Core i5-8250U.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/BenchmarkResultsRaw/X86/Intel Core i5-8250U.txt -------------------------------------------------------------------------------- /articles/ReleaseNote/v1.0_Chinese.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/ReleaseNote/v1.0_Chinese.md -------------------------------------------------------------------------------- /articles/ReleaseNote/v2.0_Chinese.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/ReleaseNote/v2.0_Chinese.md -------------------------------------------------------------------------------- /articles/ReleaseNote/v3.0_Chinese.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/ReleaseNote/v3.0_Chinese.md -------------------------------------------------------------------------------- /articles/ReleaseNote/v3.1_Chinese.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/ReleaseNote/v3.1_Chinese.md -------------------------------------------------------------------------------- /articles/VectorTraits_design.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/VectorTraits_design.txt -------------------------------------------------------------------------------- /articles/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/intro.md -------------------------------------------------------------------------------- /articles/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/articles/toc.yml -------------------------------------------------------------------------------- /docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/docfx.json -------------------------------------------------------------------------------- /docfx_clear_output.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/docfx_clear_output.bat -------------------------------------------------------------------------------- /docfx_serve.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/docfx_serve.bat -------------------------------------------------------------------------------- /docfx_serve_mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/docfx_serve_mac.sh -------------------------------------------------------------------------------- /git_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/git_config.md -------------------------------------------------------------------------------- /images/VectorTraits_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/images/VectorTraits_logo.png -------------------------------------------------------------------------------- /images/VectorTraits_logo_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/images/VectorTraits_logo_64.png -------------------------------------------------------------------------------- /images/Vectors.ShiftLeft_Core_use_inline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/images/Vectors.ShiftLeft_Core_use_inline.png -------------------------------------------------------------------------------- /images/Vectors.ShiftLeft_use_inline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/images/Vectors.ShiftLeft_use_inline.png -------------------------------------------------------------------------------- /images/doxyfiles/mainpage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/images/doxyfiles/mainpage.md -------------------------------------------------------------------------------- /images/wasm_benchmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/images/wasm_benchmark.png -------------------------------------------------------------------------------- /images/wasm_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/images/wasm_home.png -------------------------------------------------------------------------------- /images/wasm_unit_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/images/wasm_unit_test.png -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/index.md -------------------------------------------------------------------------------- /samples/VectorTraits.Output/OutputVectorTraits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/samples/VectorTraits.Output/OutputVectorTraits.cs -------------------------------------------------------------------------------- /samples/VectorTraits.Output/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/samples/VectorTraits.Output/Program.cs -------------------------------------------------------------------------------- /samples/VectorTraits.Output/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/samples/VectorTraits.Output/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/VectorTraits.Output/VectorTraits.Output.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/samples/VectorTraits.Output/VectorTraits.Output.csproj -------------------------------------------------------------------------------- /samples/VectorTraits.Sample.NetFw/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/samples/VectorTraits.Sample.NetFw/App.config -------------------------------------------------------------------------------- /samples/VectorTraits.Sample.NetFw/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/samples/VectorTraits.Sample.NetFw/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/VectorTraits.Sample.NetFw/VectorTraits.Sample.NetFw.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/samples/VectorTraits.Sample.NetFw/VectorTraits.Sample.NetFw.csproj -------------------------------------------------------------------------------- /samples/VectorTraits.Sample.NetFw/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/samples/VectorTraits.Sample.NetFw/packages.config -------------------------------------------------------------------------------- /samples/VectorTraits.Sample.NuGet/VectorTraits.Sample.NuGet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/samples/VectorTraits.Sample.NuGet/VectorTraits.Sample.NuGet.csproj -------------------------------------------------------------------------------- /samples/VectorTraits.Sample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/samples/VectorTraits.Sample/Program.cs -------------------------------------------------------------------------------- /samples/VectorTraits.Sample/VectorTraits.Sample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/samples/VectorTraits.Sample/VectorTraits.Sample.csproj -------------------------------------------------------------------------------- /src/VectorTraits.InfoInc/TraitsOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits.InfoInc/TraitsOutput.cs -------------------------------------------------------------------------------- /src/VectorTraits.InfoInc/VectorTraits.InfoInc.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits.InfoInc/VectorTraits.InfoInc.projitems -------------------------------------------------------------------------------- /src/VectorTraits.InfoInc/VectorTraits.InfoInc.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits.InfoInc/VectorTraits.InfoInc.shproj -------------------------------------------------------------------------------- /src/VectorTraits/AbstractVectors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/AbstractVectors.cs -------------------------------------------------------------------------------- /src/VectorTraits/BitMath.BitConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/BitMath.BitConverter.cs -------------------------------------------------------------------------------- /src/VectorTraits/BitMath.IBinaryInteger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/BitMath.IBinaryInteger.cs -------------------------------------------------------------------------------- /src/VectorTraits/BitMath.IFloatingPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/BitMath.IFloatingPoint.cs -------------------------------------------------------------------------------- /src/VectorTraits/BitMath.INumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/BitMath.INumber.cs -------------------------------------------------------------------------------- /src/VectorTraits/BitMath.INumberBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/BitMath.INumberBase.cs -------------------------------------------------------------------------------- /src/VectorTraits/BitMath.IRootFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/BitMath.IRootFunctions.cs -------------------------------------------------------------------------------- /src/VectorTraits/BitMath.MathOperators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/BitMath.MathOperators.cs -------------------------------------------------------------------------------- /src/VectorTraits/BitMath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/BitMath.cs -------------------------------------------------------------------------------- /src/VectorTraits/Collections/FixedArray16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Collections/FixedArray16.cs -------------------------------------------------------------------------------- /src/VectorTraits/Collections/FixedArray2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Collections/FixedArray2.cs -------------------------------------------------------------------------------- /src/VectorTraits/Collections/FixedArray_Makes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Collections/FixedArray_Makes.cs -------------------------------------------------------------------------------- /src/VectorTraits/Collections/FixedArray_Makes.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Collections/FixedArray_Makes.tt -------------------------------------------------------------------------------- /src/VectorTraits/Collections/IFixedArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Collections/IFixedArray.cs -------------------------------------------------------------------------------- /src/VectorTraits/ExTypes/ExInt128.Ex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/ExTypes/ExInt128.Ex.cs -------------------------------------------------------------------------------- /src/VectorTraits/ExTypes/ExInt128.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/ExTypes/ExInt128.cs -------------------------------------------------------------------------------- /src/VectorTraits/ExTypes/ExUInt128.Ex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/ExTypes/ExUInt128.Ex.cs -------------------------------------------------------------------------------- /src/VectorTraits/ExTypes/ExUInt128.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/ExTypes/ExUInt128.cs -------------------------------------------------------------------------------- /src/VectorTraits/ExTypes/Impl/BigIntegerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/ExTypes/Impl/BigIntegerExtensions.cs -------------------------------------------------------------------------------- /src/VectorTraits/ExTypes/Impl/EncodingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/ExTypes/Impl/EncodingExtensions.cs -------------------------------------------------------------------------------- /src/VectorTraits/ExTypes/Impl/ExBitUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/ExTypes/Impl/ExBitUtil.cs -------------------------------------------------------------------------------- /src/VectorTraits/ExTypes/Impl/ExNumberFormatInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/ExTypes/Impl/ExNumberFormatInfo.cs -------------------------------------------------------------------------------- /src/VectorTraits/ExTypes/Impl/FloatFormatInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/ExTypes/Impl/FloatFormatInfo.cs -------------------------------------------------------------------------------- /src/VectorTraits/ExTypes/Impl/FormattingHelpers.CountDigits.Int128.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/ExTypes/Impl/FormattingHelpers.CountDigits.Int128.cs -------------------------------------------------------------------------------- /src/VectorTraits/ExTypes/Impl/FormattingHelpers.CountDigits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/ExTypes/Impl/FormattingHelpers.CountDigits.cs -------------------------------------------------------------------------------- /src/VectorTraits/ExTypes/Impl/HexConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/ExTypes/Impl/HexConverter.cs -------------------------------------------------------------------------------- /src/VectorTraits/ExTypes/Impl/IntegerFormatInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/ExTypes/Impl/IntegerFormatInfo.cs -------------------------------------------------------------------------------- /src/VectorTraits/ExTypes/Impl/Number.Ex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/ExTypes/Impl/Number.Ex.cs -------------------------------------------------------------------------------- /src/VectorTraits/ExTypes/Impl/Number.Formatting.Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/ExTypes/Impl/Number.Formatting.Common.cs -------------------------------------------------------------------------------- /src/VectorTraits/ExTypes/Impl/Number.Formatting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/ExTypes/Impl/Number.Formatting.cs -------------------------------------------------------------------------------- /src/VectorTraits/ExTypes/Impl/Number.NumberBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/ExTypes/Impl/Number.NumberBuffer.cs -------------------------------------------------------------------------------- /src/VectorTraits/ExTypes/Impl/Number.NumberToFloatingPointBits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/ExTypes/Impl/Number.NumberToFloatingPointBits.cs -------------------------------------------------------------------------------- /src/VectorTraits/ExTypes/Impl/Number.Parsing.Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/ExTypes/Impl/Number.Parsing.Common.cs -------------------------------------------------------------------------------- /src/VectorTraits/ExTypes/Impl/Number.Parsing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/ExTypes/Impl/Number.Parsing.cs -------------------------------------------------------------------------------- /src/VectorTraits/ExTypes/Impl/NumberFormatInfoExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/ExTypes/Impl/NumberFormatInfoExtensions.cs -------------------------------------------------------------------------------- /src/VectorTraits/ExTypes/Impl/Ordinal.Utf8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/ExTypes/Impl/Ordinal.Utf8.cs -------------------------------------------------------------------------------- /src/VectorTraits/ExTypes/Impl/Ordinal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/ExTypes/Impl/Ordinal.cs -------------------------------------------------------------------------------- /src/VectorTraits/ExTypes/Impl/OrdinalCasing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/ExTypes/Impl/OrdinalCasing.cs -------------------------------------------------------------------------------- /src/VectorTraits/ExTypes/Impl/SR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/ExTypes/Impl/SR.cs -------------------------------------------------------------------------------- /src/VectorTraits/ExTypes/Impl/SpanExtensions.Utf8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/ExTypes/Impl/SpanExtensions.Utf8.cs -------------------------------------------------------------------------------- /src/VectorTraits/ExTypes/Impl/SpanExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/ExTypes/Impl/SpanExtensions.cs -------------------------------------------------------------------------------- /src/VectorTraits/ExTypes/Impl/ThrowHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/ExTypes/Impl/ThrowHelper.cs -------------------------------------------------------------------------------- /src/VectorTraits/ExTypes/Impl/Utf16Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/ExTypes/Impl/Utf16Utility.cs -------------------------------------------------------------------------------- /src/VectorTraits/ExTypes/Impl/Utf8Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/ExTypes/Impl/Utf8Utility.cs -------------------------------------------------------------------------------- /src/VectorTraits/ExTypes/Impl/ValueListBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/ExTypes/Impl/ValueListBuilder.cs -------------------------------------------------------------------------------- /src/VectorTraits/ExVectorFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/ExVectorFormatter.cs -------------------------------------------------------------------------------- /src/VectorTraits/ExVectorUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/ExVectorUtil.cs -------------------------------------------------------------------------------- /src/VectorTraits/Extensions/SameW/VectorSameWExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Extensions/SameW/VectorSameWExtensions.cs -------------------------------------------------------------------------------- /src/VectorTraits/Extensions/Vector128Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Extensions/Vector128Extensions.cs -------------------------------------------------------------------------------- /src/VectorTraits/Extensions/Vector256Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Extensions/Vector256Extensions.cs -------------------------------------------------------------------------------- /src/VectorTraits/Extensions/Vector512Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Extensions/Vector512Extensions.cs -------------------------------------------------------------------------------- /src/VectorTraits/Extensions/Vector64Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Extensions/Vector64Extensions.cs -------------------------------------------------------------------------------- /src/VectorTraits/Extensions/VectorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Extensions/VectorExtensions.cs -------------------------------------------------------------------------------- /src/VectorTraits/Fake/Diagnostics/CodeAnalysis/ConstantExpectedAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Fake/Diagnostics/CodeAnalysis/ConstantExpectedAttribute.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits128Abstract.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits128Abstract.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits128Abstract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits128Abstract.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits128AdvSimd.Supplement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits128AdvSimd.Supplement.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits128AdvSimd.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits128AdvSimd.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits128AdvSimd.YG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits128AdvSimd.YG.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits128AdvSimd.YI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits128AdvSimd.YI.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits128AdvSimd.YS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits128AdvSimd.YS.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits128AdvSimd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits128AdvSimd.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits128AdvSimdAbstract.Supplement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits128AdvSimdAbstract.Supplement.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits128AdvSimdAbstract.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits128AdvSimdAbstract.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits128AdvSimdAbstract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits128AdvSimdAbstract.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits128AdvSimdB64.Supplement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits128AdvSimdB64.Supplement.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits128AdvSimdB64.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits128AdvSimdB64.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits128AdvSimdB64.YG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits128AdvSimdB64.YG.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits128AdvSimdB64.YS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits128AdvSimdB64.YS.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits128AdvSimdB64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits128AdvSimdB64.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits128AdvSimdB64Abstract.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits128AdvSimdB64Abstract.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits128AdvSimdB64Abstract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits128AdvSimdB64Abstract.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits128Avx2.Supplement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits128Avx2.Supplement.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits128Avx2.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits128Avx2.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits128Avx2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits128Avx2.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits128Avx2Abstract.Supplement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits128Avx2Abstract.Supplement.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits128Avx2Abstract.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits128Avx2Abstract.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits128Avx2Abstract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits128Avx2Abstract.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits128Base.Supplement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits128Base.Supplement.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits128Base.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits128Base.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits128Base.YG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits128Base.YG.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits128Base.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits128Base.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits128PackedSimd.Supplement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits128PackedSimd.Supplement.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits128PackedSimd.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits128PackedSimd.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits128PackedSimd.YG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits128PackedSimd.YG.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits128PackedSimd.YI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits128PackedSimd.YI.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits128PackedSimd.YS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits128PackedSimd.YS.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits128PackedSimd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits128PackedSimd.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits128PackedSimdAbstract.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits128PackedSimdAbstract.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits128PackedSimdAbstract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits128PackedSimdAbstract.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits128Sse.Supplement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits128Sse.Supplement.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits128Sse.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits128Sse.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits128Sse.YG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits128Sse.YG.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits128Sse.YI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits128Sse.YI.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits128Sse.YS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits128Sse.YS.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits128Sse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits128Sse.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits128SseAbstract.Supplement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits128SseAbstract.Supplement.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits128SseAbstract.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits128SseAbstract.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits128SseAbstract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits128SseAbstract.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits256Abstract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits256Abstract.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits256Avx2.Supplement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits256Avx2.Supplement.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits256Avx2.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits256Avx2.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits256Avx2.YG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits256Avx2.YG.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits256Avx2.YI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits256Avx2.YI.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits256Avx2.YS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits256Avx2.YS.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits256Avx2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits256Avx2.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits256Avx2Abstract.Supplement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits256Avx2Abstract.Supplement.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits256Avx2Abstract.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits256Avx2Abstract.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits256Avx2Abstract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits256Avx2Abstract.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits256Base.Supplement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits256Base.Supplement.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits256Base.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits256Base.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits256Base.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits256Base.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits512Abstract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits512Abstract.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits512Avx512.Supplement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits512Avx512.Supplement.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits512Avx512.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits512Avx512.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits512Avx512.YG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits512Avx512.YG.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits512Avx512.YI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits512Avx512.YI.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits512Avx512.YS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits512Avx512.YS.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits512Avx512.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits512Avx512.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits512Avx512Abstract.Supplement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits512Avx512Abstract.Supplement.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits512Avx512Abstract.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits512Avx512Abstract.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits512Avx512Abstract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits512Avx512Abstract.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits512Base.Supplement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits512Base.Supplement.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits512Base.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits512Base.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraits512Base.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraits512Base.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraitsAbstract.Supplement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraitsAbstract.Supplement.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraitsAbstract.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraitsAbstract.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraitsAbstract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraitsAbstract.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraitsBase.Supplement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraitsBase.Supplement.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraitsBase.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraitsBase.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraitsBase.YG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraitsBase.YG.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraitsBase.YI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraitsBase.YI.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraitsBase.YS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraitsBase.YS.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector/VectorTraitsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector/VectorTraitsBase.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector128/WVectorTraits128Abstract.Supplement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector128/WVectorTraits128Abstract.Supplement.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector128/WVectorTraits128Abstract.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector128/WVectorTraits128Abstract.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector128/WVectorTraits128Abstract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector128/WVectorTraits128Abstract.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector128/WVectorTraits128AdvSimd.Supplement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector128/WVectorTraits128AdvSimd.Supplement.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector128/WVectorTraits128AdvSimd.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector128/WVectorTraits128AdvSimd.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector128/WVectorTraits128AdvSimd.YG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector128/WVectorTraits128AdvSimd.YG.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector128/WVectorTraits128AdvSimd.YI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector128/WVectorTraits128AdvSimd.YI.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector128/WVectorTraits128AdvSimd.YS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector128/WVectorTraits128AdvSimd.YS.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector128/WVectorTraits128AdvSimd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector128/WVectorTraits128AdvSimd.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector128/WVectorTraits128AdvSimdAbstract.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector128/WVectorTraits128AdvSimdAbstract.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector128/WVectorTraits128AdvSimdAbstract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector128/WVectorTraits128AdvSimdAbstract.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector128/WVectorTraits128AdvSimdB64.Supplement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector128/WVectorTraits128AdvSimdB64.Supplement.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector128/WVectorTraits128AdvSimdB64.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector128/WVectorTraits128AdvSimdB64.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector128/WVectorTraits128AdvSimdB64.YG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector128/WVectorTraits128AdvSimdB64.YG.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector128/WVectorTraits128AdvSimdB64.YI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector128/WVectorTraits128AdvSimdB64.YI.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector128/WVectorTraits128AdvSimdB64.YS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector128/WVectorTraits128AdvSimdB64.YS.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector128/WVectorTraits128AdvSimdB64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector128/WVectorTraits128AdvSimdB64.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector128/WVectorTraits128AdvSimdB64Abstract.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector128/WVectorTraits128AdvSimdB64Abstract.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector128/WVectorTraits128AdvSimdB64Abstract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector128/WVectorTraits128AdvSimdB64Abstract.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector128/WVectorTraits128Avx2.Supplement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector128/WVectorTraits128Avx2.Supplement.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector128/WVectorTraits128Avx2.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector128/WVectorTraits128Avx2.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector128/WVectorTraits128Avx2.YS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector128/WVectorTraits128Avx2.YS.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector128/WVectorTraits128Avx2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector128/WVectorTraits128Avx2.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector128/WVectorTraits128Avx2Abstract.Supplement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector128/WVectorTraits128Avx2Abstract.Supplement.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector128/WVectorTraits128Avx2Abstract.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector128/WVectorTraits128Avx2Abstract.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector128/WVectorTraits128Avx2Abstract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector128/WVectorTraits128Avx2Abstract.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector128/WVectorTraits128Base.Supplement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector128/WVectorTraits128Base.Supplement.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector128/WVectorTraits128Base.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector128/WVectorTraits128Base.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector128/WVectorTraits128Base.YG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector128/WVectorTraits128Base.YG.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector128/WVectorTraits128Base.YI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector128/WVectorTraits128Base.YI.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector128/WVectorTraits128Base.YS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector128/WVectorTraits128Base.YS.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector128/WVectorTraits128Base.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector128/WVectorTraits128Base.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector128/WVectorTraits128PackedSimd.Supplement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector128/WVectorTraits128PackedSimd.Supplement.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector128/WVectorTraits128PackedSimd.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector128/WVectorTraits128PackedSimd.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector128/WVectorTraits128PackedSimd.YG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector128/WVectorTraits128PackedSimd.YG.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector128/WVectorTraits128PackedSimd.YI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector128/WVectorTraits128PackedSimd.YI.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector128/WVectorTraits128PackedSimd.YS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector128/WVectorTraits128PackedSimd.YS.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector128/WVectorTraits128PackedSimd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector128/WVectorTraits128PackedSimd.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector128/WVectorTraits128PackedSimdAbstract.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector128/WVectorTraits128PackedSimdAbstract.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector128/WVectorTraits128PackedSimdAbstract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector128/WVectorTraits128PackedSimdAbstract.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector128/WVectorTraits128Sse.Supplement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector128/WVectorTraits128Sse.Supplement.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector128/WVectorTraits128Sse.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector128/WVectorTraits128Sse.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector128/WVectorTraits128Sse.YG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector128/WVectorTraits128Sse.YG.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector128/WVectorTraits128Sse.YI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector128/WVectorTraits128Sse.YI.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector128/WVectorTraits128Sse.YS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector128/WVectorTraits128Sse.YS.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector128/WVectorTraits128Sse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector128/WVectorTraits128Sse.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector128/WVectorTraits128SseAbstract.Supplement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector128/WVectorTraits128SseAbstract.Supplement.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector128/WVectorTraits128SseAbstract.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector128/WVectorTraits128SseAbstract.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector128/WVectorTraits128SseAbstract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector128/WVectorTraits128SseAbstract.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector256/WVectorTraits256Abstract.Supplement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector256/WVectorTraits256Abstract.Supplement.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector256/WVectorTraits256Abstract.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector256/WVectorTraits256Abstract.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector256/WVectorTraits256Abstract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector256/WVectorTraits256Abstract.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector256/WVectorTraits256Avx2.Supplement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector256/WVectorTraits256Avx2.Supplement.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector256/WVectorTraits256Avx2.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector256/WVectorTraits256Avx2.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector256/WVectorTraits256Avx2.YG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector256/WVectorTraits256Avx2.YG.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector256/WVectorTraits256Avx2.YI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector256/WVectorTraits256Avx2.YI.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector256/WVectorTraits256Avx2.YS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector256/WVectorTraits256Avx2.YS.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector256/WVectorTraits256Avx2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector256/WVectorTraits256Avx2.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector256/WVectorTraits256Avx2Abstract.Supplement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector256/WVectorTraits256Avx2Abstract.Supplement.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector256/WVectorTraits256Avx2Abstract.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector256/WVectorTraits256Avx2Abstract.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector256/WVectorTraits256Avx2Abstract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector256/WVectorTraits256Avx2Abstract.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector256/WVectorTraits256Base.Supplement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector256/WVectorTraits256Base.Supplement.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector256/WVectorTraits256Base.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector256/WVectorTraits256Base.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector256/WVectorTraits256Base.YG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector256/WVectorTraits256Base.YG.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector256/WVectorTraits256Base.YI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector256/WVectorTraits256Base.YI.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector256/WVectorTraits256Base.YS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector256/WVectorTraits256Base.YS.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector256/WVectorTraits256Base.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector256/WVectorTraits256Base.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector512/WVectorTraits512Abstract.Supplement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector512/WVectorTraits512Abstract.Supplement.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector512/WVectorTraits512Abstract.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector512/WVectorTraits512Abstract.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector512/WVectorTraits512Abstract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector512/WVectorTraits512Abstract.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector512/WVectorTraits512Avx512.Supplement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector512/WVectorTraits512Avx512.Supplement.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector512/WVectorTraits512Avx512.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector512/WVectorTraits512Avx512.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector512/WVectorTraits512Avx512.YG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector512/WVectorTraits512Avx512.YG.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector512/WVectorTraits512Avx512.YI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector512/WVectorTraits512Avx512.YI.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector512/WVectorTraits512Avx512.YS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector512/WVectorTraits512Avx512.YS.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector512/WVectorTraits512Avx512.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector512/WVectorTraits512Avx512.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector512/WVectorTraits512Avx512Abstract.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector512/WVectorTraits512Avx512Abstract.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector512/WVectorTraits512Avx512Abstract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector512/WVectorTraits512Avx512Abstract.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector512/WVectorTraits512Base.Supplement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector512/WVectorTraits512Base.Supplement.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector512/WVectorTraits512Base.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector512/WVectorTraits512Base.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector512/WVectorTraits512Base.YG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector512/WVectorTraits512Base.YG.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector512/WVectorTraits512Base.YI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector512/WVectorTraits512Base.YI.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector512/WVectorTraits512Base.YS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector512/WVectorTraits512Base.YS.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/AVector512/WVectorTraits512Base.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/AVector512/WVectorTraits512Base.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/Attributes/FakeRequiresUnreferencedCodeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/Attributes/FakeRequiresUnreferencedCodeAttribute.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/BitOfByte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/BitOfByte.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/Delegates/FuncDelegates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/Delegates/FuncDelegates.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/FloatRoundMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/FloatRoundMode.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/IBaseTraits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/IBaseTraits.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/IVectorTraits.Supplement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/IVectorTraits.Supplement.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/IVectorTraits.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/IVectorTraits.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/IVectorTraits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/IVectorTraits.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/IVectorTraits_Extensions.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/IVectorTraits_Extensions.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/IVectorTraits_Extensions.YG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/IVectorTraits_Extensions.YG.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/IVectorTraits_Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/IVectorTraits_Extensions.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/IWVectorTraits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/IWVectorTraits.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/IWVectorTraits128.Supplement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/IWVectorTraits128.Supplement.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/IWVectorTraits128.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/IWVectorTraits128.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/IWVectorTraits128.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/IWVectorTraits128.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/IWVectorTraits128_Extensions.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/IWVectorTraits128_Extensions.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/IWVectorTraits128_Extensions.YG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/IWVectorTraits128_Extensions.YG.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/IWVectorTraits128_Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/IWVectorTraits128_Extensions.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/IWVectorTraits256.Supplement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/IWVectorTraits256.Supplement.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/IWVectorTraits256.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/IWVectorTraits256.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/IWVectorTraits256.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/IWVectorTraits256.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/IWVectorTraits256_Extensions.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/IWVectorTraits256_Extensions.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/IWVectorTraits256_Extensions.YG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/IWVectorTraits256_Extensions.YG.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/IWVectorTraits256_Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/IWVectorTraits256_Extensions.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/IWVectorTraits512.Supplement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/IWVectorTraits512.Supplement.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/IWVectorTraits512.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/IWVectorTraits512.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/IWVectorTraits512.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/IWVectorTraits512.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/IWVectorTraits512_Extensions.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/IWVectorTraits512_Extensions.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/IWVectorTraits512_Extensions.YG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/IWVectorTraits512_Extensions.YG.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/IWVectorTraits512_Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/IWVectorTraits512_Extensions.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/ReflectionUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/ReflectionUtil.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/ScalarConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/ScalarConstants.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/ShuffleControl2X4Use4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/ShuffleControl2X4Use4.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/ShuffleControlG2On256.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/ShuffleControlG2On256.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/ShuffleControlG2On512.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/ShuffleControlG2On512.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/TernaryLogicControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/TernaryLogicControl.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/Util/CpuDetectionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/Util/CpuDetectionHelper.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/Util/ProcessUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/Util/ProcessUtil.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/Util/UnsafeUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/Util/UnsafeUtil.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/Vector128Constants.YG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/Vector128Constants.YG.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/Vector128Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/Vector128Constants.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/Vector128Generic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/Vector128Generic.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/Vector128_Shuffle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/Vector128_Shuffle.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/Vector256Constants.YG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/Vector256Constants.YG.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/Vector256Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/Vector256Constants.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/Vector256Generic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/Vector256Generic.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/Vector256_Shuffle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/Vector256_Shuffle.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/Vector512Constants.YG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/Vector512Constants.YG.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/Vector512Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/Vector512Constants.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/Vector512Generic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/Vector512Generic.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/Vector64Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/Vector64Constants.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/VectorConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/VectorConstants.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/VectorGeneric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/VectorGeneric.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/VectorMessageFormats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/VectorMessageFormats.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/Vector_Shuffle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/Vector_Shuffle.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/WrappedType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/WrappedType.cs -------------------------------------------------------------------------------- /src/VectorTraits/Impl/WrappedTypePool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Impl/WrappedTypePool.cs -------------------------------------------------------------------------------- /src/VectorTraits/Numerics/BitMathCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Numerics/BitMathCore.cs -------------------------------------------------------------------------------- /src/VectorTraits/Numerics/CallIBinaryInteger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Numerics/CallIBinaryInteger.cs -------------------------------------------------------------------------------- /src/VectorTraits/Numerics/CallIBinaryNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Numerics/CallIBinaryNumber.cs -------------------------------------------------------------------------------- /src/VectorTraits/Numerics/CallINumberBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Numerics/CallINumberBase.cs -------------------------------------------------------------------------------- /src/VectorTraits/Numerics/MathBinaryPrimitives.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Numerics/MathBinaryPrimitives.cs -------------------------------------------------------------------------------- /src/VectorTraits/Numerics/MathBitConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Numerics/MathBitConverter.cs -------------------------------------------------------------------------------- /src/VectorTraits/Numerics/MathBitOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Numerics/MathBitOperations.cs -------------------------------------------------------------------------------- /src/VectorTraits/Numerics/MathIBinaryInteger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Numerics/MathIBinaryInteger.cs -------------------------------------------------------------------------------- /src/VectorTraits/Numerics/MathIFloatingPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Numerics/MathIFloatingPoint.cs -------------------------------------------------------------------------------- /src/VectorTraits/Numerics/MathINumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Numerics/MathINumber.cs -------------------------------------------------------------------------------- /src/VectorTraits/Numerics/MathINumberBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Numerics/MathINumberBase.cs -------------------------------------------------------------------------------- /src/VectorTraits/Numerics/MathIRootFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Numerics/MathIRootFunctions.cs -------------------------------------------------------------------------------- /src/VectorTraits/Numerics/MathOperators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Numerics/MathOperators.cs -------------------------------------------------------------------------------- /src/VectorTraits/Scalars.T.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Scalars.T.cs -------------------------------------------------------------------------------- /src/VectorTraits/Scalars.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Scalars.cs -------------------------------------------------------------------------------- /src/VectorTraits/ShuffleControlG2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/ShuffleControlG2.cs -------------------------------------------------------------------------------- /src/VectorTraits/ShuffleControlG4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/ShuffleControlG4.cs -------------------------------------------------------------------------------- /src/VectorTraits/Tuples/Vector128X2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Tuples/Vector128X2.cs -------------------------------------------------------------------------------- /src/VectorTraits/Tuples/Vector128X3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Tuples/Vector128X3.cs -------------------------------------------------------------------------------- /src/VectorTraits/Tuples/Vector128X4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Tuples/Vector128X4.cs -------------------------------------------------------------------------------- /src/VectorTraits/Tuples/Vector128X5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Tuples/Vector128X5.cs -------------------------------------------------------------------------------- /src/VectorTraits/Tuples/Vector128X6.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Tuples/Vector128X6.cs -------------------------------------------------------------------------------- /src/VectorTraits/Tuples/Vector128X7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Tuples/Vector128X7.cs -------------------------------------------------------------------------------- /src/VectorTraits/Tuples/Vector128X8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Tuples/Vector128X8.cs -------------------------------------------------------------------------------- /src/VectorTraits/Tuples/Vector128XTuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Tuples/Vector128XTuple.cs -------------------------------------------------------------------------------- /src/VectorTraits/Tuples/Vector128XTuple_Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Tuples/Vector128XTuple_Extensions.cs -------------------------------------------------------------------------------- /src/VectorTraits/Tuples/Vector128XTuple_Extensions.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Tuples/Vector128XTuple_Extensions.tt -------------------------------------------------------------------------------- /src/VectorTraits/Tuples/Vector256X2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Tuples/Vector256X2.cs -------------------------------------------------------------------------------- /src/VectorTraits/Tuples/Vector256X3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Tuples/Vector256X3.cs -------------------------------------------------------------------------------- /src/VectorTraits/Tuples/Vector256X4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Tuples/Vector256X4.cs -------------------------------------------------------------------------------- /src/VectorTraits/Tuples/Vector256X5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Tuples/Vector256X5.cs -------------------------------------------------------------------------------- /src/VectorTraits/Tuples/Vector256X6.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Tuples/Vector256X6.cs -------------------------------------------------------------------------------- /src/VectorTraits/Tuples/Vector256X7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Tuples/Vector256X7.cs -------------------------------------------------------------------------------- /src/VectorTraits/Tuples/Vector256X8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Tuples/Vector256X8.cs -------------------------------------------------------------------------------- /src/VectorTraits/Tuples/Vector256XTuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Tuples/Vector256XTuple.cs -------------------------------------------------------------------------------- /src/VectorTraits/Tuples/Vector256XTuple_Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Tuples/Vector256XTuple_Extensions.cs -------------------------------------------------------------------------------- /src/VectorTraits/Tuples/Vector256XTuple_Extensions.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Tuples/Vector256XTuple_Extensions.tt -------------------------------------------------------------------------------- /src/VectorTraits/Tuples/VectorX2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Tuples/VectorX2.cs -------------------------------------------------------------------------------- /src/VectorTraits/Tuples/VectorX3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Tuples/VectorX3.cs -------------------------------------------------------------------------------- /src/VectorTraits/Tuples/VectorX4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Tuples/VectorX4.cs -------------------------------------------------------------------------------- /src/VectorTraits/Tuples/VectorX5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Tuples/VectorX5.cs -------------------------------------------------------------------------------- /src/VectorTraits/Tuples/VectorX6.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Tuples/VectorX6.cs -------------------------------------------------------------------------------- /src/VectorTraits/Tuples/VectorX7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Tuples/VectorX7.cs -------------------------------------------------------------------------------- /src/VectorTraits/Tuples/VectorX8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Tuples/VectorX8.cs -------------------------------------------------------------------------------- /src/VectorTraits/Tuples/VectorXTuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Tuples/VectorXTuple.cs -------------------------------------------------------------------------------- /src/VectorTraits/Tuples/VectorXTuple_Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Tuples/VectorXTuple_Extensions.cs -------------------------------------------------------------------------------- /src/VectorTraits/Tuples/VectorXTuple_Extensions.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Tuples/VectorXTuple_Extensions.tt -------------------------------------------------------------------------------- /src/VectorTraits/TypeCodeFlagsUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/TypeCodeFlagsUtil.cs -------------------------------------------------------------------------------- /src/VectorTraits/Vector128s.Ex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Vector128s.Ex.cs -------------------------------------------------------------------------------- /src/VectorTraits/Vector128s.ExType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Vector128s.ExType.cs -------------------------------------------------------------------------------- /src/VectorTraits/Vector128s.Extensions.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Vector128s.Extensions.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Vector128s.Extensions.YG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Vector128s.Extensions.YG.cs -------------------------------------------------------------------------------- /src/VectorTraits/Vector128s.Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Vector128s.Extensions.cs -------------------------------------------------------------------------------- /src/VectorTraits/Vector128s.T.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Vector128s.T.cs -------------------------------------------------------------------------------- /src/VectorTraits/Vector128s.Traits.Supplement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Vector128s.Traits.Supplement.cs -------------------------------------------------------------------------------- /src/VectorTraits/Vector128s.Traits.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Vector128s.Traits.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Vector128s.Traits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Vector128s.Traits.cs -------------------------------------------------------------------------------- /src/VectorTraits/Vector128s.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Vector128s.cs -------------------------------------------------------------------------------- /src/VectorTraits/Vector256s.Ex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Vector256s.Ex.cs -------------------------------------------------------------------------------- /src/VectorTraits/Vector256s.ExType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Vector256s.ExType.cs -------------------------------------------------------------------------------- /src/VectorTraits/Vector256s.Extensions.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Vector256s.Extensions.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Vector256s.Extensions.YG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Vector256s.Extensions.YG.cs -------------------------------------------------------------------------------- /src/VectorTraits/Vector256s.Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Vector256s.Extensions.cs -------------------------------------------------------------------------------- /src/VectorTraits/Vector256s.T.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Vector256s.T.cs -------------------------------------------------------------------------------- /src/VectorTraits/Vector256s.Traits.Supplement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Vector256s.Traits.Supplement.cs -------------------------------------------------------------------------------- /src/VectorTraits/Vector256s.Traits.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Vector256s.Traits.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Vector256s.Traits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Vector256s.Traits.cs -------------------------------------------------------------------------------- /src/VectorTraits/Vector256s.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Vector256s.cs -------------------------------------------------------------------------------- /src/VectorTraits/Vector512s.Ex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Vector512s.Ex.cs -------------------------------------------------------------------------------- /src/VectorTraits/Vector512s.ExType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Vector512s.ExType.cs -------------------------------------------------------------------------------- /src/VectorTraits/Vector512s.Extensions.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Vector512s.Extensions.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Vector512s.Extensions.YG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Vector512s.Extensions.YG.cs -------------------------------------------------------------------------------- /src/VectorTraits/Vector512s.Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Vector512s.Extensions.cs -------------------------------------------------------------------------------- /src/VectorTraits/Vector512s.T.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Vector512s.T.cs -------------------------------------------------------------------------------- /src/VectorTraits/Vector512s.Traits.Supplement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Vector512s.Traits.Supplement.cs -------------------------------------------------------------------------------- /src/VectorTraits/Vector512s.Traits.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Vector512s.Traits.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Vector512s.Traits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Vector512s.Traits.cs -------------------------------------------------------------------------------- /src/VectorTraits/Vector512s.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Vector512s.cs -------------------------------------------------------------------------------- /src/VectorTraits/Vector64s.Ex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Vector64s.Ex.cs -------------------------------------------------------------------------------- /src/VectorTraits/Vector64s.ExType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Vector64s.ExType.cs -------------------------------------------------------------------------------- /src/VectorTraits/Vector64s.T.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Vector64s.T.cs -------------------------------------------------------------------------------- /src/VectorTraits/Vector64s.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Vector64s.cs -------------------------------------------------------------------------------- /src/VectorTraits/VectorEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/VectorEnvironment.cs -------------------------------------------------------------------------------- /src/VectorTraits/VectorTextUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/VectorTextUtil.cs -------------------------------------------------------------------------------- /src/VectorTraits/VectorTraits.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/VectorTraits.csproj -------------------------------------------------------------------------------- /src/VectorTraits/VectorTraitsGlobal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/VectorTraitsGlobal.cs -------------------------------------------------------------------------------- /src/VectorTraits/Vectors.Ex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Vectors.Ex.cs -------------------------------------------------------------------------------- /src/VectorTraits/Vectors.ExType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Vectors.ExType.cs -------------------------------------------------------------------------------- /src/VectorTraits/Vectors.Extensions.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Vectors.Extensions.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Vectors.Extensions.YG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Vectors.Extensions.YG.cs -------------------------------------------------------------------------------- /src/VectorTraits/Vectors.Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Vectors.Extensions.cs -------------------------------------------------------------------------------- /src/VectorTraits/Vectors.T.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Vectors.T.cs -------------------------------------------------------------------------------- /src/VectorTraits/Vectors.Traits.Supplement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Vectors.Traits.Supplement.cs -------------------------------------------------------------------------------- /src/VectorTraits/Vectors.Traits.Y.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Vectors.Traits.Y.cs -------------------------------------------------------------------------------- /src/VectorTraits/Vectors.Traits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Vectors.Traits.cs -------------------------------------------------------------------------------- /src/VectorTraits/Vectors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/src/VectorTraits/Vectors.cs -------------------------------------------------------------------------------- /test.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/test.runsettings -------------------------------------------------------------------------------- /tests/BenchmarkDotNet.Mock/Attributes/BenchmarkAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/BenchmarkDotNet.Mock/Attributes/BenchmarkAttribute.cs -------------------------------------------------------------------------------- /tests/BenchmarkDotNet.Mock/Attributes/DisassemblyDiagnoserAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/BenchmarkDotNet.Mock/Attributes/DisassemblyDiagnoserAttribute.cs -------------------------------------------------------------------------------- /tests/BenchmarkDotNet.Mock/Attributes/GlobalSetupAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/BenchmarkDotNet.Mock/Attributes/GlobalSetupAttribute.cs -------------------------------------------------------------------------------- /tests/BenchmarkDotNet.Mock/Attributes/ParamsSourceAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/BenchmarkDotNet.Mock/Attributes/ParamsSourceAttribute.cs -------------------------------------------------------------------------------- /tests/BenchmarkDotNet.Mock/Attributes/PriorityAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/BenchmarkDotNet.Mock/Attributes/PriorityAttribute.cs -------------------------------------------------------------------------------- /tests/BenchmarkDotNet.Mock/Attributes/TargetedAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/BenchmarkDotNet.Mock/Attributes/TargetedAttribute.cs -------------------------------------------------------------------------------- /tests/BenchmarkDotNet.Mock/BenchmarkDotNet.Mock.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/BenchmarkDotNet.Mock/BenchmarkDotNet.Mock.projitems -------------------------------------------------------------------------------- /tests/BenchmarkDotNet.Mock/BenchmarkDotNet.Mock.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/BenchmarkDotNet.Mock/BenchmarkDotNet.Mock.shproj -------------------------------------------------------------------------------- /tests/CombineBenchmarks.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/CombineBenchmarks.bat -------------------------------------------------------------------------------- /tests/RunBenchmarks.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/RunBenchmarks.bat -------------------------------------------------------------------------------- /tests/RunBenchmarks_All.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/RunBenchmarks_All.bat -------------------------------------------------------------------------------- /tests/RunBenchmarks_Combine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/RunBenchmarks_Combine.sh -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Core.Inc/AbstractBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Core.Inc/AbstractBenchmark.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Core.Inc/AbstractBenchmarkWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Core.Inc/AbstractBenchmarkWriter.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Core.Inc/AbstractSharedBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Core.Inc/AbstractSharedBenchmark.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Core.Inc/AbstractSharedBenchmark_Byte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Core.Inc/AbstractSharedBenchmark_Byte.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Core.Inc/AbstractSharedBenchmark_Double.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Core.Inc/AbstractSharedBenchmark_Double.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Core.Inc/AbstractSharedBenchmark_Int128.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Core.Inc/AbstractSharedBenchmark_Int128.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Core.Inc/AbstractSharedBenchmark_Int16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Core.Inc/AbstractSharedBenchmark_Int16.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Core.Inc/AbstractSharedBenchmark_Int16_Byte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Core.Inc/AbstractSharedBenchmark_Int16_Byte.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Core.Inc/AbstractSharedBenchmark_Int32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Core.Inc/AbstractSharedBenchmark_Int32.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Core.Inc/AbstractSharedBenchmark_Int64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Core.Inc/AbstractSharedBenchmark_Int64.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Core.Inc/AbstractSharedBenchmark_SByte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Core.Inc/AbstractSharedBenchmark_SByte.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Core.Inc/AbstractSharedBenchmark_Single.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Core.Inc/AbstractSharedBenchmark_Single.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Core.Inc/AbstractSharedBenchmark_UInt16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Core.Inc/AbstractSharedBenchmark_UInt16.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Core.Inc/AbstractSharedBenchmark_UInt32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Core.Inc/AbstractSharedBenchmark_UInt32.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Core.Inc/AbstractSharedBenchmark_UInt64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Core.Inc/AbstractSharedBenchmark_UInt64.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Core.Inc/BenchmarkUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Core.Inc/BenchmarkUtil.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Core.Inc/DisableBenchmarkAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Core.Inc/DisableBenchmarkAttribute.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Core.Inc/FakeBenchmarkAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Core.Inc/FakeBenchmarkAttribute.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Core.Inc/IBenchmarkWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Core.Inc/IBenchmarkWriter.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Core.Inc/ILoopCountGetter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Core.Inc/ILoopCountGetter.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Core.Inc/SimpleBenchmarkWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Core.Inc/SimpleBenchmarkWriter.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Core.Inc/TabBenchmarkWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Core.Inc/TabBenchmarkWriter.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/ABitMath/BigMulBenchmark_UInt64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/ABitMath/BigMulBenchmark_UInt64.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/ABitMath/ClampBenchmark_Int16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/ABitMath/ClampBenchmark_Int16.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/ABitMath/ClampBenchmark_Int32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/ABitMath/ClampBenchmark_Int32.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/C/CeilingBenchmark_Double.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/C/CeilingBenchmark_Double.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/C/CeilingBenchmark_Single.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/C/CeilingBenchmark_Single.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/F/FloorBenchmark_Double.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/F/FloorBenchmark_Double.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/F/FloorBenchmark_Single.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/F/FloorBenchmark_Single.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/M/MultiplyBenchmark_Double.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/M/MultiplyBenchmark_Double.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/M/MultiplyBenchmark_Int16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/M/MultiplyBenchmark_Int16.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/M/MultiplyBenchmark_Int32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/M/MultiplyBenchmark_Int32.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/M/MultiplyBenchmark_SByte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/M/MultiplyBenchmark_SByte.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/M/MultiplyBenchmark_Single.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/M/MultiplyBenchmark_Single.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/M/MultiplyBenchmark_UInt32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/M/MultiplyBenchmark_UInt32.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/M/MultiplyBenchmark_UInt64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/M/MultiplyBenchmark_UInt64.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/N/NarrowBenchmark_Double.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/N/NarrowBenchmark_Double.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/N/NarrowBenchmark_Int16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/N/NarrowBenchmark_Int16.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/N/NarrowBenchmark_Int64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/N/NarrowBenchmark_Int64.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/S/ShiftLeftBenchmark_Byte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/S/ShiftLeftBenchmark_Byte.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/S/ShiftLeftBenchmark_Int16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/S/ShiftLeftBenchmark_Int16.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/S/ShiftLeftBenchmark_Int32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/S/ShiftLeftBenchmark_Int32.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/S/ShiftLeftBenchmark_Int64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/S/ShiftLeftBenchmark_Int64.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/S/ShiftLeftBenchmark_SByte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/S/ShiftLeftBenchmark_SByte.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/S/ShiftLeftConstBenchmark_Byte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/S/ShiftLeftConstBenchmark_Byte.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/S/ShiftLeftConstBenchmark_Int16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/S/ShiftLeftConstBenchmark_Int16.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/S/ShiftLeftConstBenchmark_Int32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/S/ShiftLeftConstBenchmark_Int32.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/S/ShiftLeftConstBenchmark_Int64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/S/ShiftLeftConstBenchmark_Int64.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/S/ShuffleBenchmark_Int16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/S/ShuffleBenchmark_Int16.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/S/ShuffleBenchmark_Int32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/S/ShuffleBenchmark_Int32.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/S/ShuffleBenchmark_Int64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/S/ShuffleBenchmark_Int64.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/S/ShuffleBenchmark_SByte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/S/ShuffleBenchmark_SByte.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/W/WidenBenchmark_Int32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/W/WidenBenchmark_Int32.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/W/WidenBenchmark_SByte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/W/WidenBenchmark_SByte.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/W/WidenBenchmark_Single.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/W/WidenBenchmark_Single.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/YC/YClampBenchmark_Double.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/YC/YClampBenchmark_Double.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/YC/YClampBenchmark_Int16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/YC/YClampBenchmark_Int16.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/YC/YClampBenchmark_Int32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/YC/YClampBenchmark_Int32.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/YC/YClampBenchmark_Int64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/YC/YClampBenchmark_Int64.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/YC/YClampBenchmark_SByte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/YC/YClampBenchmark_SByte.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/YC/YClampBenchmark_Single.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/YC/YClampBenchmark_Single.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup2UnzipBenchmark_Byte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup2UnzipBenchmark_Byte.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup2UnzipBenchmark_Int128.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup2UnzipBenchmark_Int128.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup2UnzipBenchmark_Int16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup2UnzipBenchmark_Int16.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup2UnzipBenchmark_Int32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup2UnzipBenchmark_Int32.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup2UnzipBenchmark_Int64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup2UnzipBenchmark_Int64.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup2ZipBenchmark_Byte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup2ZipBenchmark_Byte.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup2ZipBenchmark_Int128.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup2ZipBenchmark_Int128.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup2ZipBenchmark_Int16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup2ZipBenchmark_Int16.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup2ZipBenchmark_Int32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup2ZipBenchmark_Int32.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup2ZipBenchmark_Int64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup2ZipBenchmark_Int64.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup3UnzipBenchmark_Byte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup3UnzipBenchmark_Byte.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup3UnzipBenchmark_Int16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup3UnzipBenchmark_Int16.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup3UnzipBenchmark_Int32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup3UnzipBenchmark_Int32.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup3UnzipBenchmark_Int64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup3UnzipBenchmark_Int64.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup3ZipBenchmark_Byte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup3ZipBenchmark_Byte.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup3ZipBenchmark_Int16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup3ZipBenchmark_Int16.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup3ZipBenchmark_Int32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup3ZipBenchmark_Int32.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup3ZipBenchmark_Int64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup3ZipBenchmark_Int64.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup4UnzipBenchmark_Byte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup4UnzipBenchmark_Byte.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup4UnzipBenchmark_Int128.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup4UnzipBenchmark_Int128.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup4UnzipBenchmark_Int16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup4UnzipBenchmark_Int16.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup4UnzipBenchmark_Int32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup4UnzipBenchmark_Int32.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup4UnzipBenchmark_Int64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup4UnzipBenchmark_Int64.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup4ZipBenchmark_Byte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup4ZipBenchmark_Byte.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup4ZipBenchmark_Int128.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup4ZipBenchmark_Int128.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup4ZipBenchmark_Int16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup4ZipBenchmark_Int16.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup4ZipBenchmark_Int32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup4ZipBenchmark_Int32.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup4ZipBenchmark_Int64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/YG/YGroup4ZipBenchmark_Int64.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/YR/YRoundToEvenBenchmark_Double.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/YR/YRoundToEvenBenchmark_Double.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/YR/YRoundToEvenBenchmark_Single.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/YR/YRoundToEvenBenchmark_Single.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/YR/YRoundToZeroBenchmark_Double.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/YR/YRoundToZeroBenchmark_Double.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/YR/YRoundToZeroBenchmark_Single.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/YR/YRoundToZeroBenchmark_Single.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/YS/YShuffleG2Benchmark_Int16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/YS/YShuffleG2Benchmark_Int16.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/YS/YShuffleG2Benchmark_Int32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/YS/YShuffleG2Benchmark_Int32.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/YS/YShuffleG2Benchmark_Int64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/YS/YShuffleG2Benchmark_Int64.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/YS/YShuffleG2Benchmark_SByte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/YS/YShuffleG2Benchmark_SByte.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/YS/YShuffleG4X2Benchmark_Int16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/YS/YShuffleG4X2Benchmark_Int16.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/YS/YShuffleG4X2Benchmark_Int32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/YS/YShuffleG4X2Benchmark_Int32.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/YS/YShuffleG4X2Benchmark_Int64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/YS/YShuffleG4X2Benchmark_Int64.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AVector/YS/YShuffleG4X2Benchmark_SByte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AVector/YS/YShuffleG4X2Benchmark_SByte.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/AloneTestUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/AloneTestUtil.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/BenchmarkMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/BenchmarkMain.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/IntroDisassemblyDry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/IntroDisassemblyDry.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/VectorTraits.Benchmarks.Inc.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/VectorTraits.Benchmarks.Inc.projitems -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Inc/VectorTraits.Benchmarks.Inc.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Inc/VectorTraits.Benchmarks.Inc.shproj -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.NetCore/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.NetCore/Program.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.NetCore/VectorTraits.Benchmarks.NetCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.NetCore/VectorTraits.Benchmarks.NetCore.csproj -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.NetFw/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.NetFw/App.config -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.NetFw/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.NetFw/Program.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.NetFw/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.NetFw/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.NetFw/VectorTraits.Benchmarks.NetFw.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.NetFw/VectorTraits.Benchmarks.NetFw.csproj -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.NetFw/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.NetFw/packages.config -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Wasm/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Wasm/App.razor -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Wasm/Layout/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Wasm/Layout/MainLayout.razor -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Wasm/Layout/MainLayout.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Wasm/Layout/MainLayout.razor.css -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Wasm/Layout/NavMenu.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Wasm/Layout/NavMenu.razor -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Wasm/Layout/NavMenu.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Wasm/Layout/NavMenu.razor.css -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Wasm/NUnitOnWasm/TestRunner/WasmRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Wasm/NUnitOnWasm/TestRunner/WasmRunner.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Wasm/Pages/Counter.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Wasm/Pages/Counter.razor -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Wasm/Pages/Home.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Wasm/Pages/Home.razor -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Wasm/Pages/ViewBenchmark.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Wasm/Pages/ViewBenchmark.razor -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Wasm/Pages/ViewUnitTest.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Wasm/Pages/ViewUnitTest.razor -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Wasm/Pages/Weather.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Wasm/Pages/Weather.razor -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Wasm/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Wasm/Program.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Wasm/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Wasm/Properties/launchSettings.json -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Wasm/VectorTraits.Benchmarks.Wasm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Wasm/VectorTraits.Benchmarks.Wasm.csproj -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Wasm/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Wasm/_Imports.razor -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Wasm/wwwroot/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Wasm/wwwroot/css/app.css -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Wasm/wwwroot/css/bootstrap/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Wasm/wwwroot/css/bootstrap/bootstrap.min.css -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Wasm/wwwroot/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Wasm/wwwroot/favicon.png -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Wasm/wwwroot/icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Wasm/wwwroot/icon-192.png -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Wasm/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Wasm/wwwroot/index.html -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks.Wasm/wwwroot/sample-data/weather.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks.Wasm/wwwroot/sample-data/weather.json -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks/AVector/S/ShiftLeftBenchmark_Overload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks/AVector/S/ShiftLeftBenchmark_Overload.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks/AVector/S/ShiftLeftBenchmark_Overload.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks/AVector/S/ShiftLeftBenchmark_Overload.tt -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks/CommonVector.ttinclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks/CommonVector.ttinclude -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks/Program.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks/Properties/launchSettings.json -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks/VectorTraits.Benchmarks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Benchmarks/VectorTraits.Benchmarks.csproj -------------------------------------------------------------------------------- /tests/VectorTraits.Benchmarks/VectorTraits.Benchmarks_waitdebug.bat: -------------------------------------------------------------------------------- 1 | VectorTraits.Benchmarks.exe 0 -waitdebug 2 | pause 3 | -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/BitMathTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/BitMathTests.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/BitMathTests_IRootFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/BitMathTests_IRootFunctions.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/ExTypes/ExInt128Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/ExTypes/ExInt128Tests.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/ExTypes/ExUInt128Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/ExTypes/ExUInt128Tests.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IVectorTraitsTest/VectorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IVectorTraitsTest/VectorTests.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IVectorTraitsTest/VectorTests_A.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IVectorTraitsTest/VectorTests_A.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IVectorTraitsTest/VectorTests_C.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IVectorTraitsTest/VectorTests_C.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IVectorTraitsTest/VectorTests_D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IVectorTraitsTest/VectorTests_D.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IVectorTraitsTest/VectorTests_E.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IVectorTraitsTest/VectorTests_E.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IVectorTraitsTest/VectorTests_F.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IVectorTraitsTest/VectorTests_F.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IVectorTraitsTest/VectorTests_M.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IVectorTraitsTest/VectorTests_M.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IVectorTraitsTest/VectorTests_N.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IVectorTraitsTest/VectorTests_N.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IVectorTraitsTest/VectorTests_S.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IVectorTraitsTest/VectorTests_S.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IVectorTraitsTest/VectorTests_W.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IVectorTraitsTest/VectorTests_W.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IVectorTraitsTest/VectorTests_YB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IVectorTraitsTest/VectorTests_YB.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IVectorTraitsTest/VectorTests_YC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IVectorTraitsTest/VectorTests_YC.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IVectorTraitsTest/VectorTests_YG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IVectorTraitsTest/VectorTests_YG.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IVectorTraitsTest/VectorTests_YI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IVectorTraitsTest/VectorTests_YI.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IVectorTraitsTest/VectorTests_YM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IVectorTraitsTest/VectorTests_YM.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IVectorTraitsTest/VectorTests_YN.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IVectorTraitsTest/VectorTests_YN.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IVectorTraitsTest/VectorTests_YO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IVectorTraitsTest/VectorTests_YO.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IVectorTraitsTest/VectorTests_YR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IVectorTraitsTest/VectorTests_YR.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IVectorTraitsTest/VectorTests_YS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IVectorTraitsTest/VectorTests_YS.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits128Test/Vector128Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits128Test/Vector128Tests.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits128Test/Vector128Tests_A.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits128Test/Vector128Tests_A.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits128Test/Vector128Tests_B.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits128Test/Vector128Tests_B.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits128Test/Vector128Tests_C.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits128Test/Vector128Tests_C.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits128Test/Vector128Tests_D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits128Test/Vector128Tests_D.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits128Test/Vector128Tests_E.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits128Test/Vector128Tests_E.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits128Test/Vector128Tests_F.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits128Test/Vector128Tests_F.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits128Test/Vector128Tests_G.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits128Test/Vector128Tests_G.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits128Test/Vector128Tests_L.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits128Test/Vector128Tests_L.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits128Test/Vector128Tests_M.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits128Test/Vector128Tests_M.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits128Test/Vector128Tests_N.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits128Test/Vector128Tests_N.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits128Test/Vector128Tests_O.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits128Test/Vector128Tests_O.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits128Test/Vector128Tests_S.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits128Test/Vector128Tests_S.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits128Test/Vector128Tests_W.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits128Test/Vector128Tests_W.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits128Test/Vector128Tests_X.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits128Test/Vector128Tests_X.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits128Test/Vector128Tests_YB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits128Test/Vector128Tests_YB.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits128Test/Vector128Tests_YC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits128Test/Vector128Tests_YC.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits128Test/Vector128Tests_YG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits128Test/Vector128Tests_YG.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits128Test/Vector128Tests_YI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits128Test/Vector128Tests_YI.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits128Test/Vector128Tests_YM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits128Test/Vector128Tests_YM.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits128Test/Vector128Tests_YN.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits128Test/Vector128Tests_YN.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits128Test/Vector128Tests_YO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits128Test/Vector128Tests_YO.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits128Test/Vector128Tests_YR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits128Test/Vector128Tests_YR.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits128Test/Vector128Tests_YS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits128Test/Vector128Tests_YS.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits256Test/Vector256Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits256Test/Vector256Tests.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits256Test/Vector256Tests_A.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits256Test/Vector256Tests_A.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits256Test/Vector256Tests_B.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits256Test/Vector256Tests_B.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits256Test/Vector256Tests_C.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits256Test/Vector256Tests_C.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits256Test/Vector256Tests_D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits256Test/Vector256Tests_D.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits256Test/Vector256Tests_E.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits256Test/Vector256Tests_E.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits256Test/Vector256Tests_F.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits256Test/Vector256Tests_F.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits256Test/Vector256Tests_G.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits256Test/Vector256Tests_G.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits256Test/Vector256Tests_L.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits256Test/Vector256Tests_L.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits256Test/Vector256Tests_M.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits256Test/Vector256Tests_M.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits256Test/Vector256Tests_N.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits256Test/Vector256Tests_N.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits256Test/Vector256Tests_O.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits256Test/Vector256Tests_O.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits256Test/Vector256Tests_S.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits256Test/Vector256Tests_S.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits512Test/Vector512Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/IWVectorTraits512Test/Vector512Tests.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/ReflectionUtilTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/ReflectionUtilTests.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/Vector128ConstantsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/Vector128ConstantsTests.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/Vector256ConstantsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/Vector256ConstantsTests.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/Vector512ConstantsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/Vector512ConstantsTests.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/VectorConstantsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/VectorConstantsTests.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Impl/VectorGenericTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Impl/VectorGenericTests.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/MathTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/MathTests.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/MyTestUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/MyTestUtil.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Numerics/BitMathCoreTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Numerics/BitMathCoreTests.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Numerics/MathBinaryPrimitivesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Numerics/MathBinaryPrimitivesTests.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Numerics/MathBitConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Numerics/MathBitConverterTests.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Numerics/MathIFloatingPointTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Numerics/MathIFloatingPointTests.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Numerics/MathINumberBaseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Numerics/MathINumberBaseTests.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Numerics/MathINumberTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Numerics/MathINumberTests.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Numerics/MathIRootFunctionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Numerics/MathIRootFunctionsTests.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Numerics/MathOperatorsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Numerics/MathOperatorsTests.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/ScalarsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/ScalarsTests.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/TestDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/TestDataSource.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Tuples/Vector128XTupleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Tuples/Vector128XTupleTests.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Tuples/Vector256XTupleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Tuples/Vector256XTupleTests.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Tuples/VectorXTupleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Tuples/VectorXTupleTests.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/TypeCodeFlagsUtilTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/TypeCodeFlagsUtilTests.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Vector128sTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Vector128sTests.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Vector256sTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Vector256sTests.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Vector512sTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Vector512sTests.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/Vector64sTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/Vector64sTests.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/VectorTextUtilTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/VectorTextUtilTests.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/VectorTraits.Tests.Inc.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/VectorTraits.Tests.Inc.projitems -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/VectorTraits.Tests.Inc.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/VectorTraits.Tests.Inc.shproj -------------------------------------------------------------------------------- /tests/VectorTraits.Tests.Inc/VectorsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests.Inc/VectorsTests.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests/UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests/UnitTest1.cs -------------------------------------------------------------------------------- /tests/VectorTraits.Tests/VectorTraits - Backup.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests/VectorTraits - Backup.Tests.csproj -------------------------------------------------------------------------------- /tests/VectorTraits.Tests/VectorTraits.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tests/VectorTraits.Tests/VectorTraits.Tests.csproj -------------------------------------------------------------------------------- /toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/toc.yml -------------------------------------------------------------------------------- /tools/UpdateBenchmarkResults/UpdateBenchmarkResults.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tools/UpdateBenchmarkResults/UpdateBenchmarkResults.sln -------------------------------------------------------------------------------- /tools/UpdateBenchmarkResults/UpdateBenchmarkResults/Model/BenchmarkCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tools/UpdateBenchmarkResults/UpdateBenchmarkResults/Model/BenchmarkCase.cs -------------------------------------------------------------------------------- /tools/UpdateBenchmarkResults/UpdateBenchmarkResults/Model/BenchmarkCpu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tools/UpdateBenchmarkResults/UpdateBenchmarkResults/Model/BenchmarkCpu.cs -------------------------------------------------------------------------------- /tools/UpdateBenchmarkResults/UpdateBenchmarkResults/Model/BenchmarkFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tools/UpdateBenchmarkResults/UpdateBenchmarkResults/Model/BenchmarkFile.cs -------------------------------------------------------------------------------- /tools/UpdateBenchmarkResults/UpdateBenchmarkResults/Model/ITitleGetter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tools/UpdateBenchmarkResults/UpdateBenchmarkResults/Model/ITitleGetter.cs -------------------------------------------------------------------------------- /tools/UpdateBenchmarkResults/UpdateBenchmarkResults/Model/InputCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tools/UpdateBenchmarkResults/UpdateBenchmarkResults/Model/InputCase.cs -------------------------------------------------------------------------------- /tools/UpdateBenchmarkResults/UpdateBenchmarkResults/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tools/UpdateBenchmarkResults/UpdateBenchmarkResults/Program.cs -------------------------------------------------------------------------------- /tools/build/UpdateBenchmarkResults.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tools/build/UpdateBenchmarkResults.bat -------------------------------------------------------------------------------- /tools/build/UpdateBenchmarkResults.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tools/build/UpdateBenchmarkResults.deps.json -------------------------------------------------------------------------------- /tools/build/UpdateBenchmarkResults.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tools/build/UpdateBenchmarkResults.dll -------------------------------------------------------------------------------- /tools/build/UpdateBenchmarkResults.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tools/build/UpdateBenchmarkResults.exe -------------------------------------------------------------------------------- /tools/build/UpdateBenchmarkResults.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tools/build/UpdateBenchmarkResults.pdb -------------------------------------------------------------------------------- /tools/build/UpdateBenchmarkResults.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyl910/VectorTraits/HEAD/tools/build/UpdateBenchmarkResults.runtimeconfig.json --------------------------------------------------------------------------------