Skip to content

Commit

Permalink
sweep
Browse files Browse the repository at this point in the history
  • Loading branch information
jtguibas committed Oct 15, 2024
1 parent 206db15 commit e5251fa
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
26 changes: 13 additions & 13 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions sweep.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def main():
parser.add_argument("--programs", nargs='+', default=['loop', 'fibonacci', 'tendermint', 'reth1', 'reth2'], help="List of programs to benchmark", choices=['loop', 'fibonacci', 'tendermint', 'reth1', 'reth2'])
parser.add_argument("--provers", nargs='+', default=["sp1"], help="List of provers to use", choices=["sp1", "risc0"])
parser.add_argument("--hashfns", nargs='+', default=['poseidon'], help="List of hash functions to use", choices=["poseidon"])
parser.add_argument("--shard-sizes", type=int, nargs='+', default=[22], help="List of shard sizes to use")
parser.add_argument("--shard-sizes", type=int, nargs='+', default=[21], help="List of shard sizes to use")
parser.add_argument("--block-1", default="17106222", help="Block number for reth1")
parser.add_argument("--block-2", default="19409768", help="Block number for reth2")

Expand All @@ -33,4 +33,4 @@ def main():
run_benchmark(args.filename, args.trials, args.programs, args.provers, args.hashfns, args.shard_sizes, args.block_1, args.block_2)

if __name__ == "__main__":
main()
main()

0 comments on commit e5251fa

Please sign in to comment.