1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
//! A non-portable SIMD library for Rust.
//!
//! Unlike [`core::simd`], the goal of this library is to provide an explicitly
//! non-portable but high-level API to platform vectorization instructions. It
//! focuses on expressiveness and type safety.
// Nightly Features:
// Document the conditional compilation of items.
// Allow hiding some 'cfg' items.
// Ignore 'cfg(doc)' in conditional compilation documentation.
// Allow the use of AVX-512 intrinsics.
// Allow the use of 'repr(simd)'.
// Allow the use of compiler intrinsics.
// Allow traits with overlapping impls.
// Allow directly accessing LLVM intrinsics.
// Allow passing SIMD types to LLVM intrinsics.
// Allow some expressions in `const` parameters.
// Allow checking for interior mutability.
// Architecture Modules:
// Macro Imports:
pub use core as __core;