1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 01:22:09 +02:00

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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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