Skip to content

Commit 6fe699e

Browse files
committed
!!! kevm-pyk/__main__: turn off parallelism
1 parent ede6a24 commit 6fe699e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

kevm-pyk/src/kevm_pyk/__main__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,8 @@ def prove_it(id_and_cfg: Tuple[str, Tuple[KCFG, Path]]) -> bool:
435435
return False
436436

437437
with ProcessPool(ncpus=workers) as process_pool:
438-
results = process_pool.map(prove_it, kcfgs.items())
438+
# results = process_pool.map(prove_it, kcfgs.items())
439+
results = map(prove_it, kcfgs.items())
439440
process_pool.close()
440441

441442
failed = 0

0 commit comments

Comments
 (0)