bump up the maximum allowed amount of workers
on small block sizes -j 24 is feasible
diff --git a/src/main.c b/src/main.c
index 16a11e3..32ef4f9 100644
--- a/src/main.c
+++ b/src/main.c
@@ -263,8 +263,8 @@ int main(int argc, char * argv[]) {
}
#ifdef PTHREAD
- if (workers > 16 || workers < 0) {
- fprintf(stderr, "Number of workers must be between 0 and 16.\n");
+ if (workers > 24 || workers < 0) {
+ fprintf(stderr, "Number of workers must be between 0 and 24.\n");
return 1;
}
