Skip to content

Commit

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

/// <summary>
/// float32x2_t vpminnm_f32 (float32x2_t a, float32x2_t b)
/// A64: FMINNMP Vd.2S, Vn.2S, Vm.2S
/// </summary>
public static Vector64<float> MinNumberPairwise(Vector64<float> left, Vector64<float> right) { throw new PlatformNotSupportedException(); }

/// <summary>
/// float64x2_t vpminnmq_f64 (float64x2_t a, float64x2_t b)
/// A64: FMINNMP Vd.2D, Vn.2D, Vm.2D
/// </summary>
public static Vector128<double> MinNumberPairwise(Vector128<double> left, Vector128<double> right) { throw new PlatformNotSupportedException(); }

/// <summary>
/// float32x4_t vpminnmq_f32 (float32x4_t a, float32x4_t b)
/// A64: FMINNMP Vd.4S, Vn.4S, Vm.4S
/// </summary>
public static Vector128<float> MinNumberPairwise(Vector128<float> left, Vector128<float> right) { throw new PlatformNotSupportedException(); }

/// <summary>
/// float32_t vpminnms_f32 (float32x2_t a)
/// A64: FMINNMP Sd, Vn.2S
/// </summary>
public static Vector64<float> MinNumberPairwiseScalar(Vector64<float> value) { throw new PlatformNotSupportedException(); }

/// <summary>
/// float64_t vpminnmqd_f64 (float64x2_t a)
/// A64: FMINNMP Dd, Vn.2D
/// </summary>
public static Vector64<double> MinNumberPairwiseScalar(Vector128<double> value) { throw new PlatformNotSupportedException(); }

/// <summary>
/// uint8x16_t vpminq_u8 (uint8x16_t a, uint8x16_t b)
/// A64: UMINP Vd.16B, Vn.16B, Vm.16B
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -865,6 +865,36 @@ internal Arm64() { }
/// </summary>
public static Vector128<double> MinNumber(Vector128<double> left, Vector128<double> right) => MinNumber(left, right);

/// <summary>
/// float32x2_t vpminnm_f32 (float32x2_t a, float32x2_t b)
/// A64: FMINNMP Vd.2S, Vn.2S, Vm.2S
/// </summary>
public static Vector64<float> MinNumberPairwise(Vector64<float> left, Vector64<float> right) => MinNumberPairwise(left, right);

/// <summary>
/// float64x2_t vpminnmq_f64 (float64x2_t a, float64x2_t b)
/// A64: FMINNMP Vd.2D, Vn.2D, Vm.2D
/// </summary>
public static Vector128<double> MinNumberPairwise(Vector128<double> left, Vector128<double> right) => MinNumberPairwise(left, right);

/// <summary>
/// float32x4_t vpminnmq_f32 (float32x4_t a, float32x4_t b)
/// A64: FMINNMP Vd.4S, Vn.4S, Vm.4S
/// </summary>
public static Vector128<float> MinNumberPairwise(Vector128<float> left, Vector128<float> right) => MinNumberPairwise(left, right);

/// <summary>
/// float32_t vpminnms_f32 (float32x2_t a)
/// A64: FMINNMP Sd, Vn.2S
/// </summary>
public static Vector64<float> MinNumberPairwiseScalar(Vector64<float> value) => MinNumberPairwiseScalar(value);

/// <summary>
/// float64_t vpminnmqd_f64 (float64x2_t a)
/// A64: FMINNMP Dd, Vn.2D
/// </summary>
public static Vector64<double> MinNumberPairwiseScalar(Vector128<double> value) => MinNumberPairwiseScalar(value);

/// <summary>
/// uint8x16_t vpminq_u8 (uint8x16_t a, uint8x16_t b)
/// A64: UMINP Vd.16B, Vn.16B, Vm.16B
Expand Down

0 comments on commit c285661

Please sign in to comment.