21 lines
444 B
Rust
21 lines
444 B
Rust
#![feature(portable_simd)]
|
|
use core_simd::i16x2;
|
|
|
|
#[macro_use]
|
|
mod ops_macros;
|
|
impl_signed_tests! { i16 }
|
|
|
|
#[test]
|
|
fn max_is_not_lexicographic() {
|
|
let a = i16x2::splat(10);
|
|
let b = i16x2::from_array([-4, 12]);
|
|
assert_eq!(a.max(b), i16x2::from_array([10, 12]));
|
|
}
|
|
|
|
#[test]
|
|
fn min_is_not_lexicographic() {
|
|
let a = i16x2::splat(10);
|
|
let b = i16x2::from_array([12, -4]);
|
|
assert_eq!(a.min(b), i16x2::from_array([10, -4]));
|
|
}
|