2022-09-05 12:01:37 +00:00
|
|
|
From 82f597cf81b169b0e72a576ac8751f598c059c48 Mon Sep 17 00:00:00 2001
|
2021-07-25 18:45:56 +02:00
|
|
|
From: bjorn3 <bjorn3@users.noreply.github.com>
|
2021-11-18 19:30:28 +01:00
|
|
|
Date: Thu, 18 Nov 2021 19:28:40 +0100
|
2021-07-25 18:45:56 +02:00
|
|
|
Subject: [PATCH] Disable unsupported tests
|
|
|
|
|
|
|
|
---
|
2022-09-05 12:01:37 +00:00
|
|
|
crates/core_simd/src/elements/int.rs | 8 ++++++++
|
|
|
|
crates/core_simd/src/elements/uint.rs | 4 ++++
|
|
|
|
crates/core_simd/src/masks/full_masks.rs | 9 +++++++++
|
|
|
|
crates/core_simd/src/vector.rs | 2 ++
|
|
|
|
crates/core_simd/tests/masks.rs | 2 ++
|
|
|
|
5 files changed, 25 insertions(+)
|
2021-07-25 18:45:56 +02:00
|
|
|
|
2022-09-05 12:01:37 +00:00
|
|
|
diff --git a/crates/core_simd/src/elements/int.rs b/crates/core_simd/src/elements/int.rs
|
|
|
|
index 9b8c37e..ea95f08 100644
|
|
|
|
--- a/crates/core_simd/src/elements/int.rs
|
|
|
|
+++ b/crates/core_simd/src/elements/int.rs
|
|
|
|
@@ -11,6 +11,7 @@ pub trait SimdInt: Copy + Sealed {
|
|
|
|
/// Scalar type contained by this SIMD vector type.
|
|
|
|
type Scalar;
|
2021-07-25 18:45:56 +02:00
|
|
|
|
2022-09-05 12:01:37 +00:00
|
|
|
+ /*
|
|
|
|
/// Lanewise saturating add.
|
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
@@ -45,6 +46,7 @@ pub trait SimdInt: Copy + Sealed {
|
|
|
|
/// assert_eq!(unsat, Simd::from_array([1, MAX, MIN, 0]));
|
|
|
|
/// assert_eq!(sat, Simd::from_array([MIN, MIN, MIN, 0]));
|
|
|
|
fn saturating_sub(self, second: Self) -> Self;
|
|
|
|
+ */
|
|
|
|
|
|
|
|
/// Lanewise absolute value, implemented in Rust.
|
|
|
|
/// Every lane becomes its absolute value.
|
|
|
|
@@ -61,6 +63,7 @@ pub trait SimdInt: Copy + Sealed {
|
|
|
|
/// ```
|
|
|
|
fn abs(self) -> Self;
|
|
|
|
|
|
|
|
+ /*
|
|
|
|
/// Lanewise saturating absolute value, implemented in Rust.
|
|
|
|
/// As abs(), except the MIN value becomes MAX instead of itself.
|
|
|
|
///
|
|
|
|
@@ -96,6 +99,7 @@ pub trait SimdInt: Copy + Sealed {
|
|
|
|
/// assert_eq!(sat, Simd::from_array([MAX, 2, -3, MIN + 1]));
|
|
|
|
/// ```
|
|
|
|
fn saturating_neg(self) -> Self;
|
|
|
|
+ */
|
|
|
|
|
|
|
|
/// Returns true for each positive lane and false if it is zero or negative.
|
|
|
|
fn is_positive(self) -> Self::Mask;
|
|
|
|
@@ -199,6 +203,7 @@ macro_rules! impl_trait {
|
|
|
|
type Mask = Mask<<$ty as SimdElement>::Mask, LANES>;
|
|
|
|
type Scalar = $ty;
|
2021-07-25 18:45:56 +02:00
|
|
|
|
|
|
|
+ /*
|
2022-09-05 12:01:37 +00:00
|
|
|
#[inline]
|
|
|
|
fn saturating_add(self, second: Self) -> Self {
|
|
|
|
// Safety: `self` is a vector
|
|
|
|
@@ -210,6 +215,7 @@ macro_rules! impl_trait {
|
|
|
|
// Safety: `self` is a vector
|
|
|
|
unsafe { intrinsics::simd_saturating_sub(self, second) }
|
2021-11-18 19:30:28 +01:00
|
|
|
}
|
|
|
|
+ */
|
|
|
|
|
2022-09-05 12:01:37 +00:00
|
|
|
#[inline]
|
|
|
|
fn abs(self) -> Self {
|
|
|
|
@@ -218,6 +224,7 @@ macro_rules! impl_trait {
|
2021-11-18 19:30:28 +01:00
|
|
|
(self^m) - m
|
|
|
|
}
|
|
|
|
|
|
|
|
+ /*
|
2022-09-05 12:01:37 +00:00
|
|
|
#[inline]
|
|
|
|
fn saturating_abs(self) -> Self {
|
|
|
|
// arith shift for -1 or 0 mask based on sign bit, giving 2s complement
|
|
|
|
@@ -230,6 +237,7 @@ macro_rules! impl_trait {
|
|
|
|
fn saturating_neg(self) -> Self {
|
2021-07-25 18:45:56 +02:00
|
|
|
Self::splat(0).saturating_sub(self)
|
|
|
|
}
|
|
|
|
+ */
|
2022-09-05 12:01:37 +00:00
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn is_positive(self) -> Self::Mask {
|
|
|
|
diff --git a/crates/core_simd/src/elements/uint.rs b/crates/core_simd/src/elements/uint.rs
|
|
|
|
index 21e7e76..0d6dee2 100644
|
|
|
|
--- a/crates/core_simd/src/elements/uint.rs
|
|
|
|
+++ b/crates/core_simd/src/elements/uint.rs
|
|
|
|
@@ -6,6 +6,7 @@ pub trait SimdUint: Copy + Sealed {
|
|
|
|
/// Scalar type contained by this SIMD vector type.
|
|
|
|
type Scalar;
|
|
|
|
|
|
|
|
+ /*
|
|
|
|
/// Lanewise saturating add.
|
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
@@ -40,6 +41,7 @@ pub trait SimdUint: Copy + Sealed {
|
|
|
|
/// assert_eq!(unsat, Simd::from_array([3, 2, 1, 0]));
|
|
|
|
/// assert_eq!(sat, Simd::splat(0));
|
|
|
|
fn saturating_sub(self, second: Self) -> Self;
|
|
|
|
+ */
|
|
|
|
|
|
|
|
/// Returns the sum of the lanes of the vector, with wrapping addition.
|
|
|
|
fn reduce_sum(self) -> Self::Scalar;
|
|
|
|
@@ -78,6 +80,7 @@ macro_rules! impl_trait {
|
|
|
|
{
|
|
|
|
type Scalar = $ty;
|
|
|
|
|
|
|
|
+ /*
|
|
|
|
#[inline]
|
|
|
|
fn saturating_add(self, second: Self) -> Self {
|
|
|
|
// Safety: `self` is a vector
|
|
|
|
@@ -89,6 +92,7 @@ macro_rules! impl_trait {
|
|
|
|
// Safety: `self` is a vector
|
|
|
|
unsafe { intrinsics::simd_saturating_sub(self, second) }
|
|
|
|
}
|
|
|
|
+ */
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn reduce_sum(self) -> Self::Scalar {
|
|
|
|
diff --git a/crates/core_simd/src/masks/full_masks.rs b/crates/core_simd/src/masks/full_masks.rs
|
|
|
|
index adf0fcb..5b10292 100644
|
|
|
|
--- a/crates/core_simd/src/masks/full_masks.rs
|
|
|
|
+++ b/crates/core_simd/src/masks/full_masks.rs
|
|
|
|
@@ -150,6 +150,7 @@ where
|
|
|
|
super::Mask<T, LANES>: ToBitMaskArray,
|
|
|
|
[(); <super::Mask<T, LANES> as ToBitMaskArray>::BYTES]: Sized,
|
|
|
|
{
|
|
|
|
+ /*
|
|
|
|
assert_eq!(<super::Mask<T, LANES> as ToBitMaskArray>::BYTES, N);
|
|
|
|
|
|
|
|
// Safety: N is the correct bitmask size
|
|
|
|
@@ -170,6 +171,8 @@ where
|
|
|
|
|
|
|
|
bitmask
|
|
|
|
}
|
|
|
|
+ */
|
|
|
|
+ panic!();
|
2021-07-25 18:45:56 +02:00
|
|
|
}
|
2022-09-05 12:01:37 +00:00
|
|
|
|
|
|
|
#[cfg(feature = "generic_const_exprs")]
|
|
|
|
@@ -209,6 +212,7 @@ where
|
|
|
|
where
|
|
|
|
super::Mask<T, LANES>: ToBitMask<BitMask = U>,
|
|
|
|
{
|
|
|
|
+ /*
|
|
|
|
// Safety: U is required to be the appropriate bitmask type
|
|
|
|
let bitmask: U = unsafe { intrinsics::simd_bitmask(self.0) };
|
|
|
|
|
|
|
|
@@ -218,6 +222,8 @@ where
|
|
|
|
} else {
|
|
|
|
bitmask
|
|
|
|
}
|
|
|
|
+ */
|
|
|
|
+ panic!();
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
@@ -225,6 +231,7 @@ where
|
|
|
|
where
|
|
|
|
super::Mask<T, LANES>: ToBitMask<BitMask = U>,
|
|
|
|
{
|
|
|
|
+ /*
|
|
|
|
// LLVM assumes bit order should match endianness
|
|
|
|
let bitmask = if cfg!(target_endian = "big") {
|
|
|
|
bitmask.reverse_bits(LANES)
|
|
|
|
@@ -240,6 +247,8 @@ where
|
|
|
|
Self::splat(false).to_int(),
|
|
|
|
))
|
|
|
|
}
|
|
|
|
+ */
|
|
|
|
+ panic!();
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
2021-11-18 19:30:28 +01:00
|
|
|
diff --git a/crates/core_simd/src/vector.rs b/crates/core_simd/src/vector.rs
|
2022-09-05 12:01:37 +00:00
|
|
|
index e8e8f68..7173c24 100644
|
2021-11-18 19:30:28 +01:00
|
|
|
--- a/crates/core_simd/src/vector.rs
|
|
|
|
+++ b/crates/core_simd/src/vector.rs
|
2022-09-05 12:01:37 +00:00
|
|
|
@@ -250,6 +250,7 @@ where
|
|
|
|
unsafe { intrinsics::simd_cast(self) }
|
2021-11-18 19:30:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
+ /*
|
|
|
|
/// Reads from potentially discontiguous indices in `slice` to construct a SIMD vector.
|
|
|
|
/// If an index is out-of-bounds, the lane is instead selected from the `or` vector.
|
|
|
|
///
|
2022-09-05 12:01:37 +00:00
|
|
|
@@ -473,6 +474,7 @@ where
|
2021-11-18 19:30:28 +01:00
|
|
|
// Cleared ☢️ *mut T Zone
|
|
|
|
}
|
|
|
|
}
|
|
|
|
+ */
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T, const LANES: usize> Copy for Simd<T, LANES>
|
2021-07-25 18:45:56 +02:00
|
|
|
diff --git a/crates/core_simd/tests/masks.rs b/crates/core_simd/tests/masks.rs
|
2022-09-05 12:01:37 +00:00
|
|
|
index 673d0db..0d68b01 100644
|
2021-07-25 18:45:56 +02:00
|
|
|
--- a/crates/core_simd/tests/masks.rs
|
|
|
|
+++ b/crates/core_simd/tests/masks.rs
|
2022-09-05 12:01:37 +00:00
|
|
|
@@ -59,6 +59,7 @@ macro_rules! test_mask_api {
|
|
|
|
assert!(!v.all());
|
2021-07-25 18:45:56 +02:00
|
|
|
}
|
2021-11-18 19:30:28 +01:00
|
|
|
|
|
|
|
+ /*
|
|
|
|
#[test]
|
2022-09-05 12:01:37 +00:00
|
|
|
fn roundtrip_int_conversion() {
|
|
|
|
let values = [true, false, false, true, false, false, true, false];
|
|
|
|
@@ -99,6 +100,7 @@ macro_rules! test_mask_api {
|
|
|
|
assert_eq!(bitmask, 0b01);
|
|
|
|
assert_eq!(core_simd::Mask::<$type, 2>::from_bitmask(bitmask), mask);
|
2021-11-18 19:30:28 +01:00
|
|
|
}
|
|
|
|
+ */
|
2022-09-05 12:01:37 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn cast() {
|
2021-07-25 18:45:56 +02:00
|
|
|
--
|
2022-09-05 12:01:37 +00:00
|
|
|
2.25.1
|