mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-01-11 10:13:09 +00:00
* Port of AVX2 MDS impl * Bugfixes * Inline ASM to the rescue * remove debug printsln + minor formatting * Work around NEON intrinsic bug without inline ASM * Minor error in doc * Daniel comments * More Daniel comments Co-authored-by: Jakub Nabaglo <jakub@mirprotocol.org>
15 lines
257 B
Rust
15 lines
257 B
Rust
#![feature(destructuring_assignment)]
|
|
#![feature(generic_const_exprs)]
|
|
#![feature(specialization)]
|
|
#![feature(stdsimd)]
|
|
|
|
pub mod field;
|
|
pub mod fri;
|
|
pub mod gadgets;
|
|
pub mod gates;
|
|
pub mod hash;
|
|
pub mod iop;
|
|
pub mod plonk;
|
|
pub mod polynomial;
|
|
pub mod util;
|