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

Implement cdp.run.auto #20

Open
zshaheen opened this issue Aug 18, 2017 · 0 comments
Open

Implement cdp.run.auto #20

zshaheen opened this issue Aug 18, 2017 · 0 comments
Assignees

Comments

@zshaheen
Copy link
Contributor

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:

  • If num_workers is only given, run with cdp.cdp_run.multiprocess()
  • If scheduler_addr is given regardless of anything else, run cdp.cdp_run.distribute()
  • If neither num_workers or scheduler_addr is given, run in serial with 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)
@zshaheen zshaheen added this to the v1.1.0 milestone Aug 18, 2017
@zshaheen zshaheen self-assigned this Aug 18, 2017
@zshaheen zshaheen removed this from the v1.1.0 milestone Sep 7, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant