Skip to content

Commit

Permalink
chore: upate readme
Browse files Browse the repository at this point in the history
  • Loading branch information
0xWOLAND committed Nov 19, 2023
1 parent 52af545 commit 6679e60
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,13 @@ fast-ntt is a Rust package to compute polynomial multiplication in `O(nlog(n))`
let a = Polynomial::new(vec![3, 2, 1].iter().map(|&x| BigInt::from(x)).collect());
let da = a.diff();
```

## Benchmarks

Generate benchmarks using:

```bash
cargo criterion --message-format=json | criterion-table > BENCHMARKS.md
```

Benchmarks are also available [here](./BENCHMARKS.md)

0 comments on commit 6679e60

Please sign in to comment.