//! Fixed-arity u32 input/output buffer layouts used by compiler-internal ops.
//!
//! Each `const` describes the exact sequence of `DataType::U32` slots an op
//! consumes or produces. Pack layouts together so the op definitions read
//! cleanly (`U32X4_INPUTS`, `U32_OUTPUTS`) without a file-per-const.
use crateDataType;
/// Single-word `u32` output.
pub const U32_OUTPUTS: & = &;
/// Two-word `u32` output.
pub const U32X2_OUTPUTS: & = &;
/// Four-word `u32` input tuple.
pub const U32X4_INPUTS: & = &;
/// Five-word `u32` input tuple.
pub const U32X5_INPUTS: & = &;