From 3d6bf6e80cf9233d8ac88cba8eb6c2b9faaedfee Mon Sep 17 00:00:00 2001 From: Filip Tibell Date: Fri, 26 Jan 2024 10:00:40 +0100 Subject: [PATCH] Change example batch sizing for better benchmarking --- examples/lua/lots_of_threads.luau | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/lua/lots_of_threads.luau b/examples/lua/lots_of_threads.luau index 0e77745..d442898 100644 --- a/examples/lua/lots_of_threads.luau +++ b/examples/lua/lots_of_threads.luau @@ -1,8 +1,8 @@ --!nocheck --!nolint UnknownGlobal -local NUM_BATCHES = 10 -local NUM_THREADS = 100_000 +local NUM_BATCHES = 100 +local NUM_THREADS = 10_000 print(`Spawning {NUM_BATCHES * NUM_THREADS} threads split into {NUM_BATCHES} batches\n`)