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
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:
While N (O(10)) << M (O(100)) the answer is clear but as N -> M we might want to look at better optimizations.
The text was updated successfully, but these errors were encountered:
docs(docs/developer_guide.md): updated docs
7ad47c5
Uodated docs to include a developer guide on docstrings #14 just test this
No branches or pull requests
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:
While N (O(10)) << M (O(100)) the answer is clear but as N -> M we might want to look at better optimizations.
The text was updated successfully, but these errors were encountered: