-
Notifications
You must be signed in to change notification settings - Fork 226
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
[BLOCKED]: sphinx extension for workchain documentation #748
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This change was implemented to accommodate the new functionality that allows a Process to expose the inputs of another Process. The goal for WorkChain design should be to write well defined abstract components that can then be composed together by wrapping workchains. To prevent to having to manually copy over the input specification of a sub workchain we provide the 'expose_inputs' method that will do this automatically. To allow for inputs to be separated, we change the inputs of the ProcessSpec to be a PortNamespace, which allows for arbitrary nesting of Ports.
This option allows the exposing of only a particular subset of inputs of a Process.
A common use case is for a wrapping Process to run multiple instances of another sub Process and therefore wants to expose its inputs. However, the required inputs for the sub Process instances may differ for some inputs, while others can be shared. To accomplish this one can expose the inputs twice in separate namespaces and expose the shared inputs on the top level namespace. To simplify the specification of which inputs to expose where, we introduce the 'include' parameter for the ProcessSpec.expose_inputs method. To simply the gathering of inputs from the parsed inputs for a given sub process over multiple namespaces, we adapt the behaviour of the exposed_inputs methods to traverse down the namespace tree, collecting all inputs that are common to the process in question. This agglomerating behavior can be prevented by passing the argument agglomerate=False
Change the default for 'include' to None.
Add test where the same dict is passed for two namespaces
…sphuber/aiida_core into same_inputname_in_parent
Fix typo in agglomerate tests
The exclude / include functionality is factored out into a filter function. What's missing for the expose_outputs implementation is the ability to add namespaces.
…0_expose_workchain_inputs
Update: Added integration with To make this possible, the directive is now
instead of
|
Closing in favor of #1155. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Blocked because it depends on the
expose_inputs
andexpose_outputs
/PortNamespace
implementation, which is not merged yet.Fixes #721.
It defines a sphinx directive
aiida-workchain
, which produces documentation like this:The tests are run separately (using pytest) from the main AiiDA tests.
Tests fail because of the unresolved issue about duplicate links.