From 5cee2250220532a2c72dd663d106c847ff93dd5c Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Fri, 19 Dec 2025 07:47:13 -0500 Subject: [PATCH] Add NUMA example commentary (#6839 partial) --- examples/make_tracing_c/sim_main.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/examples/make_tracing_c/sim_main.cpp b/examples/make_tracing_c/sim_main.cpp index f69ca36b5..ade094041 100644 --- a/examples/make_tracing_c/sim_main.cpp +++ b/examples/make_tracing_c/sim_main.cpp @@ -38,6 +38,10 @@ int main(int argc, char** argv) { // May be overridden by commandArgs argument parsing contextp->debug(0); + // Peak number of threads the model will use + // (e.g. match the --threads setting of the Verilation) + contextp->threads(1); + // Randomization reset policy // May be overridden by commandArgs argument parsing contextp->randReset(2);