poulpy-cpu-ref 0.6.0

Portable reference CPU implementations of poulpy-hal open extension points
Documentation
1
2
3
4
5
6
7
8
#[macro_export]
macro_rules! hal_impl_module {
    ($defaults:ident) => {
        fn new(n: u64) -> Module<Self> {
            <Self as $defaults<Self>>::module_new_default(n)
        }
    };
}