forked from arkworks-rs/poly-commit
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add benchmark templates and sample benches for IPA (arkworks-rs#133)
* Add benchmark templates and sample benches for IPA Co-authored-by: Antonio Mejías Gil <[email protected]> * adapt max poly degree to 20 * Move all PC Schemes to one module; bench-templates as a separate module * inline one of the type aliases * remove commented out comment * Add benchmark instructions to the README * make bench-templates non publishable * fix yaml file: remove newline * rename the inner dir to `poly-commit` * rename usages of `pcs` to `poly-commit` --------- Co-authored-by: Antonio Mejías Gil <[email protected]>
- Loading branch information
Showing
42 changed files
with
445 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
[package] | ||
name = "ark-pcs-bench-templates" | ||
version.workspace = true | ||
authors.workspace = true | ||
repository.workspace = true | ||
categories.workspace = true | ||
include.workspace = true | ||
license.workspace = true | ||
edition.workspace = true | ||
publish = false | ||
|
||
[dependencies] | ||
ark-poly-commit = { path = "../poly-commit", default-features = false } | ||
ark-serialize = { version = "^0.4.0", default-features = false, features = [ "derive" ] } | ||
ark-ff = { version = "^0.4.0", default-features = false } | ||
ark-ec = { version = "^0.4.0", default-features = false } | ||
ark-poly = {version = "^0.4.0", default-features = false } | ||
ark-crypto-primitives = {version = "^0.4.0", default-features = false, features = ["sponge", "merkle_tree"] } | ||
ark-std = { version = "^0.4.0", default-features = false } | ||
|
||
rand_chacha = { version = "0.3.0", default-features = false } | ||
criterion = { version = "0.5", default-features = false } | ||
|
||
paste = "1.0" |
Oops, something went wrong.