Skip to content

Commit

Permalink
Fix typo in docs of AdvSimd.Arm64.TransposeOdd (dotnet#76971)
Browse files Browse the repository at this point in the history
  • Loading branch information
TechPizzaDev authored Nov 7, 2022
1 parent 62e06de commit a4e98d4
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3432,14 +3432,14 @@ internal Arm64() { }
public static Vector128<ushort> TransposeOdd(Vector128<ushort> left, Vector128<ushort> right) => TransposeOdd(left, right);

/// <summary>
/// uint32x4_t vtrn1q_u32(uint32x4_t a, uint32x4_t b)
/// A64: TRN1 Vd.4S, Vn.4S, Vm.4S
/// uint32x4_t vtrn2q_u32(uint32x4_t a, uint32x4_t b)
/// A64: TRN2 Vd.4S, Vn.4S, Vm.4S
/// </summary>
public static Vector128<uint> TransposeOdd(Vector128<uint> left, Vector128<uint> right) => TransposeOdd(left, right);

/// <summary>
/// uint64x2_t vtrn1q_u64(uint64x2_t a, uint64x2_t b)
/// A64: TRN1 Vd.2D, Vn.2D, Vm.2D
/// uint64x2_t vtrn2q_u64(uint64x2_t a, uint64x2_t b)
/// A64: TRN2 Vd.2D, Vn.2D, Vm.2D
/// </summary>
public static Vector128<ulong> TransposeOdd(Vector128<ulong> left, Vector128<ulong> right) => TransposeOdd(left, right);

Expand Down

0 comments on commit a4e98d4

Please sign in to comment.