-
Notifications
You must be signed in to change notification settings - Fork 11
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
Add generic job factories #896
Conversation
A JobFactory is a light weight object that represents a certain type of pyiron job. It can be used by abstract workflows to run jobs without knowing what the reference model and the detailed parameters e.g. for the HPC queue are, without having to pass all of this information through all layers of the workflow.
This may be a bit cryptic (the example in the docstring might help or it might not), but I use these objects in a lot of my work now and I need them to live somewhere. If this is not wanted in contrib, I can put them up separately. |
Pull Request Test Coverage Report for Build 7033608708Warning: This coverage report may be inaccurate.We've detected an issue with your CI configuration that might affect the accuracy of this pull request's coverage report.
💛 - Coveralls |
A JobFactory is a light weight object that represents a certain type of pyiron job. It can be used by abstract workflows to run jobs without knowing what the reference model and the detailed parameters e.g. for the HPC queue are, without having to pass all of this information through all layers of the workflow.