Skip to content

Commit

Permalink
prover: tweak hard-coded partition and batch sizes
Browse files Browse the repository at this point in the history
  • Loading branch information
dtebbs committed May 11, 2021
1 parent 4cd5756 commit e4517c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/prover/Prover.java
Original file line number Diff line number Diff line change
Expand Up @@ -217,10 +217,10 @@ void run(
final int numExecutors = 16;
final int numCores = 2;
final int numMemory = 16;
final int numPartitions = 64;
final int numPartitions = 8;
final StorageLevel storageLevel = StorageLevel.MEMORY_AND_DISK_SER();

final int batchSize = 1024;
final int batchSize = 32 * 1024;
final var provingKeyRDD =
provingKeyReader.readProvingKeyRDD(primaryInputSize, sc, numPartitions, batchSize);
final var primFullRDD =
Expand Down

0 comments on commit e4517c8

Please sign in to comment.