Skip to content

Commit

Permalink
Add "MaxNumberAcross" in AdvSimd.cs AdvSimd.PlatformNotSupported.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
echesakov committed Feb 19, 2020
1 parent a3c2767 commit b5931c6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -682,6 +682,12 @@ internal Arm64() { }
/// </summary>
public static Vector128<double> MaxNumber(Vector128<double> left, Vector128<double> right) { throw new PlatformNotSupportedException(); }

/// <summary>
/// float32_t vmaxnmvq_f32 (float32x4_t a)
/// A64: FMAXNMV Sd, Vn.4S
/// </summary>
public static Vector64<float> MaxNumberAcross(Vector128<float> value) { throw new PlatformNotSupportedException(); }

/// <summary>
/// float32x2_t vpmaxnm_f32 (float32x2_t a, float32x2_t b)
/// A64: FMAXNMP Vd.2S, Vn.2S, Vm.2S
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -684,6 +684,12 @@ internal Arm64() { }
/// </summary>
public static Vector128<double> MaxNumber(Vector128<double> left, Vector128<double> right) => MaxNumber(left, right);

/// <summary>
/// float32_t vmaxnmvq_f32 (float32x4_t a)
/// A64: FMAXNMV Sd, Vn.4S
/// </summary>
public static Vector64<float> MaxNumberAcross(Vector128<float> value) => MaxNumberAcross(value);

/// <summary>
/// float32x2_t vpmaxnm_f32 (float32x2_t a, float32x2_t b)
/// A64: FMAXNMP Vd.2S, Vn.2S, Vm.2S
Expand Down

0 comments on commit b5931c6

Please sign in to comment.