Skip to content

Commit

Permalink
Update description of full domain eval in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
myl7 committed Feb 6, 2024
1 parent 8e8c7bd commit 135f5ce
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,10 @@ let mut y = ByteGroup::zero();
dcf.eval(false, &k, &[&x], &mut [&mut y]);
```

Full domain evaluation has not been implemented yet.
Use the current batch evaluation consumes near double time than the optimized full domain evaluation.
We plan to implement it in the future, but no guarantee can be made so far.
For full domain evaluation, use `full_eval` instead.
While similar to `eval`, `full_eval` does not accept a vector of `x`, and instead expect a vector of `y` whose length is `2 ** (N * 8)` to store all evaluated `y`.

More examples are available as benchmarks in the [benches dir][./benches]

## References

Expand Down

0 comments on commit 135f5ce

Please sign in to comment.