poulpy-cpu-ref 0.1.1

The providing concrete implementations of poulpy-hal through its open extension points and reference cpu code
Documentation
1
2
3
4
5
6
7
8
9
use poulpy_hal::{api::ModuleNew, layouts::Module, test_suite::convolution::test_bivariate_tensoring};

use crate::FFT64Ref;

#[test]
fn test_convolution_fft64_ref() {
    let module: Module<FFT64Ref> = Module::<FFT64Ref>::new(8);
    test_bivariate_tensoring(&module);
}