コード例 #1
0
        public void identity()
        {
            YMM src    = YmmPattern.Increasing <uint>();
            YMM expect = YmmPattern.Increasing <uint>();
            var actual = vpermd(src, Perm8.Identity);

            Claim.eq(expect, actual);
        }
コード例 #2
0
ファイル: YmmPattern.cs プロジェクト: 0xCM/arrows
 public static YMM Decrements <T>(T first = default, params Swap[] swaps)
     where T : unmanaged
 => YmmPattern <T> .Decrements();