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

[CONTRIB] PopenPoolExecutor #6959

Merged
merged 1 commit into from
Dec 20, 2020
Merged

[CONTRIB] PopenPoolExecutor #6959

merged 1 commit into from
Dec 20, 2020

Commits on Nov 23, 2020

  1. [CONTRIB] PopenPoolExecutor

    PopenPoolExecutor implements a ProcessPoolExecutor backed by popen.
    
    - Only handles invoking functions in tvm namespace.
    - Unlike multiprocessing, does not require __main__ block,
      which means it can directly run on jupyter notebook.
    - Come with timeout and fault tolerant support to timeout
      long running jobs, and restart the process when an error happens.
    
    Recommended usage: it is recommended to create a pool and reuse
    it in a long running job(e.g. autotuning) so that the process
    are reused when possible.
    tqchen committed Nov 23, 2020
    Configuration menu
    Copy the full SHA
    6f989e7 View commit details
    Browse the repository at this point in the history