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

Where to parallelize #14

Open
steob92 opened this issue Feb 12, 2024 · 0 comments
Open

Where to parallelize #14

steob92 opened this issue Feb 12, 2024 · 0 comments
Labels
good first issue Good for newcomers help wanted Extra attention is needed

Comments

@steob92
Copy link
Collaborator

steob92 commented Feb 12, 2024

When generating backgrounds we need to think of where and how to parallelize the code. It's not clear to me what option is better.

Say we have a runlists of N runs each of which require X hours of backgrounds. To find these backgrounds we need to look at M background runs.

Should we:

  • Set each run of interest to be a parallel job. This means means M background runs are looked at in sequence.
  • Run each N runs in sequence and look at the M background runs in parallel.

While N (O(10)) << M (O(100)) the answer is clear but as N -> M we might want to look at better optimizations.

@steob92 steob92 added good first issue Good for newcomers help wanted Extra attention is needed labels Feb 12, 2024
steob92 added a commit that referenced this issue Feb 22, 2024
Uodated docs to include a developer guide on docstrings

#14 just test this
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
good first issue Good for newcomers help wanted Extra attention is needed
Projects
None yet
Development

No branches or pull requests

1 participant