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.
pull/28/head
Steve Kelly 2024-04-16 06:54:27 -04:00 committed by GitHub
parent 9ef1332068
commit a304be4f29
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

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