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.
This commit is contained in:
Steve Kelly
2024-04-16 06:54:27 -04:00
committed by GitHub
parent 9ef1332068
commit a304be4f29

View File

@@ -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}}`