From 7c954a737434701d689d7831bb7c0eab80d44028 Mon Sep 17 00:00:00 2001 From: Jaremy Creechley Date: Mon, 3 Jun 2024 14:58:50 +0100 Subject: [PATCH] thread number --- tests/codex/slots/testprover.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/codex/slots/testprover.nim b/tests/codex/slots/testprover.nim index 802b9973..9305f077 100644 --- a/tests/codex/slots/testprover.nim +++ b/tests/codex/slots/testprover.nim @@ -67,7 +67,7 @@ suite "Test Prover": r1cs = "tests/circuits/fixtures/proof_main.r1cs" wasm = "tests/circuits/fixtures/proof_main.wasm" - taskpool = Taskpool.new(num_threads = 2) + taskpool = Taskpool.new(num_threads = 6) params = CircomCompatParams.init(r1cs, wasm) circomBackend = AsyncCircomCompat.init(params, taskpool) prover = Prover.new(store, circomBackend, samples)