From 8acabe18cad69d7c7ed7a00ffef654abc3873a16 Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Thu, 9 Dec 2021 00:42:39 +0100 Subject: Multi-threaded pruning table generation - now it's actually fast :) --- src/steps.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/steps.c') diff --git a/src/steps.c b/src/steps.c index 4646abd..abb2918 100644 --- a/src/steps.c +++ b/src/steps.c @@ -1143,10 +1143,10 @@ new_localinfo() } void -prepare_step(Step *step) +prepare_step(Step *step, int nthreads) { int i; for (i = 0; i < step->ntables; i++) - genptable(step->tables[i]); + genptable(step->tables[i], nthreads); } -- cgit v1.3