mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-03 04:04:06 +00:00
7c3d72d069
These tests just verify some basic APIs of core::simd function, and guarantees that attempting to access the wrong things doesn't work. The majority of tests are stochastic, and so remain upstream, but a few deterministic tests arrive in the subtree as doc tests.
14 lines
222 B
Rust
14 lines
222 B
Rust
use core::simd::f32x4;
|
|
|
|
#[test]
|
|
fn testing() {
|
|
let x = f32x4::from_array([1.0, 1.0, 1.0, 1.0]);
|
|
let y = -x;
|
|
|
|
let h = x * 0.5;
|
|
|
|
let r = y.abs();
|
|
assert_eq!(x, r);
|
|
assert_eq!(h, f32x4::splat(0.5));
|
|
}
|