#![allow(unused)] use super::*;
#[derive(Debug, Default, Clone, Copy)]
enum Dir {
#[default]
Row,
Col,
}
impl Dir {
fn flip(self) -> Self {
match self {
Dir::Row => Dir::Col,
Dir::Col => Dir::Row,
}
}
}
fn transposer_pe(
in_row: Valid<S<INPUT_BITS>>,
(in_col, in_dir): (Valid<S<INPUT_BITS>>, Valid<Dir>),
) -> (Valid<S<INPUT_BITS>>, (Valid<S<INPUT_BITS>>, Valid<Dir>)) {
todo!("assignment 5")
}
#[allow(clippy::type_complexity)]
fn transposer_pes<const DIM: usize>(
in_row: [Valid<S<INPUT_BITS>>; DIM],
in_col_with_dir: [(Valid<S<INPUT_BITS>>, Valid<Dir>); DIM],
) -> ([Valid<S<INPUT_BITS>>; DIM], [(Valid<S<INPUT_BITS>>, Valid<Dir>); DIM]) {
todo!("assignment 5")
}
fn unzip_tuple_arr<P1: Copy, P2: Copy, const N: usize>(i: [Valid<(P1, P2)>; N]) -> [(Valid<P1>, Valid<P2>); N] {
array_map!(i, Valid::<(P1, P2)>::unzip)
}
fn zip_tuple_arr<P1: Copy, P2: Copy, const N: usize>(i: [(Valid<P1>, Valid<P2>); N]) -> [Valid<(P1, P2)>; N] {
array_map!(i, JoinValidExt::join_valid)
}
pub fn transposer<const DIM: usize>(i: Valid<Array<S<INPUT_BITS>, DIM>>) -> Valid<Array<S<INPUT_BITS>, DIM>>
where
[(); clog2(DIM)]:,
[(); clog2(DIM) + 1]:,
{
todo!("assignment 5")
}
#[synthesize]
pub fn transposer_default(in_row: Valid<Array<S<INPUT_BITS>, 16>>) -> Valid<Array<S<INPUT_BITS>, 16>> {
transposer::<16>(in_row)
}