mirror of
https://github.com/arnaucube/mat-vec-prod-exp.git
synced 2026-03-22 23:56:41 +01:00
No description
- Rust 100%
| src | ||
| .gitignore | ||
| Cargo.lock | ||
| Cargo.toml | ||
| README.md | ||
mat-vec-prod-exp
Matrix vector product experiments
Instructions:
- Just run
cargo test -- --nocaptureand the number of constraints will be printed - Can comment & uncomment
lib.rslines71&72to test the different approaches:let Az = mat_vec_mul_sparse_gadget(A, z); // let Az = handcrafted_A_by_z(cs, z)?;