1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-09 15:10:29 +02:00

Fix parallelism in quads benchmark

This commit is contained in:
Andy Wingo 2023-02-28 11:20:50 +01:00
parent 9576558a34
commit 157037dd1f

View file

@ -131,7 +131,7 @@ int main(int argc, char *argv[]) {
struct gc_options *options = gc_allocate_options();
gc_options_set_int(options, GC_OPTION_HEAP_SIZE_POLICY, GC_HEAP_SIZE_FIXED);
gc_options_set_size(options, GC_OPTION_HEAP_SIZE, heap_size);
gc_options_set_int(options, GC_OPTION_PARALLELISM, 1);
gc_options_set_int(options, GC_OPTION_PARALLELISM, parallelism);
struct gc_heap *heap;
struct gc_mutator *mut;