mirror of
https://github.com/arnaucube/poulpy.git
synced 2026-02-10 05:06:44 +01:00
10 lines
255 B
Rust
10 lines
255 B
Rust
use poulpy_hal::{api::ModuleNew, layouts::Module, test_suite::convolution::test_convolution};
|
|
|
|
use crate::FFT64Ref;
|
|
|
|
#[test]
|
|
fn test_convolution_fft64_ref() {
|
|
let module: Module<FFT64Ref> = Module::<FFT64Ref>::new(8);
|
|
test_convolution(&module);
|
|
}
|