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
//! Layer configurations for Vector Engine pipeline.
use SmartDefault;
/// VectorEngine FxpToFp layer configuration.
;
/// VectorEngine FpToFxp layer configuration.
;
/// Bit-preserving reread of the 32-bit stream as the other VE scalar type, the op-side handle for
/// [`vector_reinterpret`](crate::prelude::VectorTensor::vector_reinterpret).
///
/// Unlike its two siblings above it configures no layer, because a reinterpret has no hardware stage
/// to configure. It exists so both the single-stream and the pair path read the element semantics from
/// one `HasConversionOp` impl; the direction comes from that impl's `D` / `D2`.
pub ;