use crate::ir::DataType;
#[allow(dead_code, reason = "compiler op schema catalog entry")]
pub(crate) const U32_OUTPUTS: &[DataType] = &[DataType::U32];
#[allow(dead_code, reason = "compiler op schema catalog entry")]
pub(crate) const U32X2_OUTPUTS: &[DataType] = &[DataType::U32, DataType::U32];
#[allow(dead_code, reason = "compiler op schema catalog entry")]
pub(crate) const U32X4_INPUTS: &[DataType] =
&[DataType::U32, DataType::U32, DataType::U32, DataType::U32];
#[allow(dead_code, reason = "compiler op schema catalog entry")]
pub(crate) const U32X5_INPUTS: &[DataType] = &[
DataType::U32,
DataType::U32,
DataType::U32,
DataType::U32,
DataType::U32,
];