From a304be4f29983f5af7e82891c1c0a6e2ba7c08c2 Mon Sep 17 00:00:00 2001 From: Steve Kelly Date: Tue, 16 Apr 2024 06:54:27 -0400 Subject: [PATCH] julia: switch example from parallel to threaded (#12648) Switch example startup from parallel mode (-p) to multithreaded mode (-t) to align with the latest practices, which should lead to better performance. --- pages/common/julia.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/common/julia.md b/pages/common/julia.md index 8113c71c6..fe01e9de8 100644 --- a/pages/common/julia.md +++ b/pages/common/julia.md @@ -27,6 +27,6 @@ `julia -E '{{(1 - cos(pi/4))/2}}'` -- Start Julia in parallel mode, using N worker processes: +- Start Julia in multithreaded mode, using N threads: -`julia -p {{N}}` +`julia -t {{N}}`