Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add threadpool support to runtime #42302

Merged
merged 2 commits into from
Apr 26, 2022
Merged

Commits on Apr 25, 2022

  1. Add threadpool support to runtime

    Adds support for Julia to be started with `--threads=auto|N[,M]` where
    `N` specifies the number of threads in the default threadpool and `M`,
    if provided, specifies the number of threads in the new interactive
    threadpool.
    
    Adds an optional first parameter to `Threads.@spawn`:
    `[:default|:interactive]`. If `:interactive` is specified, the task will
    be run by thread(s) in the interactive threadpool only (if there is
    one).
    
    Co-authored-by: K Pamnany <[email protected]>
    jpsamaroo and kpamnany committed Apr 25, 2022
    Configuration menu
    Copy the full SHA
    c7ea709 View commit details
    Browse the repository at this point in the history

Commits on Apr 26, 2022

  1. Configuration menu
    Copy the full SHA
    ab78165 View commit details
    Browse the repository at this point in the history