-
Notifications
You must be signed in to change notification settings - Fork 23
Doc/update post processing examples #211
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
Doc/update post processing examples #211
Conversation
@@ -1,94 +1,115 @@ | |||
""" | |||
.. _ref_distributed_total_disp: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You lost the reference here but not in the other examples, is that on purpose?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No it wasn't intentional. I will add it back.
Distributed post without client connection to remote processes with Operators | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
This example shows how distributed files can be read and post processed | ||
on distributed processes. After remote post processing, results a merged |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"are" merged
docs/source/conf.py
Outdated
epub_exclude_files = ["search.html"] | ||
|
||
# GraphViz configuration | ||
graphviz_output_format = 'svg' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
At the same time as correcting the "are" in the other file, could you please add a newline at the end of this file? It's just to comply with standards, and if this was the only thing to change I would not ask you a new commit just for that.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Understood, I will do that.
.ci/build_doc.bat
Outdated
pushd . | ||
cd ../docs/ | ||
call make clean | ||
:: call make clean |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jose-henriquez-roa I think that you didn't mean to commit that
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I did this back when I had yet to ask whether there was a way to get around the documentation build timeout error. I was just testing whether removing the make clean would reduce the build time, I added it back afterwards.
""" | ||
.. _ref_distributed_total_disp: | ||
Distributed post without client connection to remote processes |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jose-henriquez-roa could you please rename this example to: "Post processing of displacement on distributed processes"
# started. Operator instances will be created on each of those servers to | ||
# address each a different result file. | ||
# In this example, we will post process an analysis distributed in 2 files, | ||
# we will consequently require 2 remote processes |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# we will consequently require 2 remote processes | |
# we will consequently require 2 remote processes. |
@@ -1,14 +1,15 @@ | |||
""" | |||
.. _ref_distributed_delegate_to_server: | |||
.. _ref_distributed_total_disp_op: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if this example is the same as the first one, we can remove this file
""" | ||
.. _ref_distributed_workflows_on_remote: | ||
Connect operator chains on different processes implicitly |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you please rename this one to: "Create custom workflow on distributed processes."
To help understand this example the following diagram is provided. It shows | ||
the operator chain used to compute the final result. | ||
.. image:: 02-operator-dep.svg |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
in this drawing, could you please add a datasource as an input of "response"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
and maybe rename merge as "merge_fields"
# started. Operator instances will be created on each of those servers to | ||
# address each a different result file. | ||
# In this example, we will post process an analysis distributed in 2 files, | ||
# we will consequently require 2 remote processes |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# we will consequently require 2 remote processes | |
# we will consequently require 2 remote processes. |
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
# In this workflow we merge the modal basis, the meshes, read the modal response | ||
# and expand the modal response with the modal basis | ||
# In the follwing series of operators we merge the modal basis, the meshes, read |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# In the follwing series of operators we merge the modal basis, the meshes, read | |
# In the following series of operators we merge the modal basis, the meshes, read |
Updated distributed post processing examples.