Skip to content

Commit

Permalink
Fix code.
Browse files Browse the repository at this point in the history
  • Loading branch information
fchirica committed Mar 14, 2023
1 parent 945aeb4 commit a64bef5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/prover_disk.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ class ContextQueue {
public:
ContextQueue() {}

ContextQueue(uint32_t context_count, uint32_t thread_count, bool no_cpu_affinity) {
init(context_count, thread_count, no_cpu_affinity);
ContextQueue(uint32_t context_count, uint32_t thread_count, bool no_cpu_affinity, const uint32_t maxCompressionLevel) {
init(context_count, thread_count, no_cpu_affinity, maxCompressionLevel);
}

void init(uint32_t context_count, uint32_t thread_count, bool no_cpu_affinity, const uint32_t maxCompressionLevel) {
Expand Down Expand Up @@ -113,7 +113,7 @@ class ContextQueue {
std::mutex dequeue_lock;
};

ContextQueue decompresser_context_queue(4, 10, false);
ContextQueue decompresser_context_queue(4, 10, false, 7);


// The DiskProver, given a correctly formatted plot file, can efficiently generate valid proofs
Expand Down

0 comments on commit a64bef5

Please sign in to comment.