We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
For users that want a single function that can automatically choose to run in serial, or parallel with multiprocessing/distributed running.
cdp.cdp_run.auto(func, args) will look at the attributes of the first args and run the following functions based on the requirements:
cdp.cdp_run.auto(func, args)
num_workers
cdp.cdp_run.multiprocess()
scheduler_addr
cdp.cdp_run.distribute()
cdp.cdp_run.serial()
Just like #19, make sure that this works with non-Parameters lists as well. So have something like this:
cdp.cdp_run(func, args, num_workers=None, scheduler_addr=None)
The text was updated successfully, but these errors were encountered:
zshaheen
No branches or pull requests
For users that want a single function that can automatically choose to run in serial, or parallel with multiprocessing/distributed running.
cdp.cdp_run.auto(func, args)
will look at the attributes of the first args and run the following functions based on the requirements:num_workers
is only given, run withcdp.cdp_run.multiprocess()
scheduler_addr
is given regardless of anything else, runcdp.cdp_run.distribute()
num_workers
orscheduler_addr
is given, run in serial withcdp.cdp_run.serial()
Just like #19, make sure that this works with non-Parameters lists as well. So have something like this:
The text was updated successfully, but these errors were encountered: