From c9dd7effd426f56b31d41a1054fe3fcd6dd309e5 Mon Sep 17 00:00:00 2001 From: "a.stevan" <antoine.stevan@isae-supaero.fr> Date: Thu, 12 Sep 2024 11:01:33 +0200 Subject: [PATCH] use smaller data and params --- assets/128_4_3.bin | Bin 0 -> 192 bytes examples/fri.rs | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) create mode 100644 assets/128_4_3.bin diff --git a/assets/128_4_3.bin b/assets/128_4_3.bin new file mode 100644 index 0000000000000000000000000000000000000000..c41b5c91430f303aa4beff6077f54867c64e6812 GIT binary patch literal 192 zcmV;x06+hPBfRot$G=2#hHOp6eWQn<wN%r!l^|mSTjO8`HH2J%h|lF`G<^$7;+D`# z`w;w8!zbBUcF;?)5%L+%im+{U^oPwCK0{_#T|1|nBBrm`kmCJ0&IghdU!6DWPF#eK zAPZIi?f{-sMj$53-~*vK{y1zCT9(+fssoBAwXhM7uc%tRCC*WK=~mZ##YKV}>$!a0 uV|eJ%Uaw17$Pe0(<7gYnIN}2|YWREeVaET8sla_&Y29VJZ`R$Pl{e(|XJP38 literal 0 HcmV?d00001 diff --git a/examples/fri.rs b/examples/fri.rs index e43f7617..995a35ab 100644 --- a/examples/fri.rs +++ b/examples/fri.rs @@ -47,8 +47,8 @@ where } fn main() { - let bytes = include_bytes!("../assets/128_4096_3.bin").to_vec(); + let bytes = include_bytes!("../assets/128_4_3.bin").to_vec(); eprintln!("loaded {} bytes of data", bytes.len()); - run::<2, Fq, Blake3, DensePolynomial<Fq>>(&bytes, 4096, 4096 * 2, 2, 1, 32).unwrap(); + run::<2, Fq, Blake3, DensePolynomial<Fq>>(&bytes, 4, 4 * 2, 2, 1, 32).unwrap(); } -- GitLab