-
Notifications
You must be signed in to change notification settings - Fork 2
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
fix #24, update ex3 to ex5 (hdf5) #27
base: main
Are you sure you want to change the base?
Conversation
ex5.yml
Outdated
when: '$ii>0 & ' # `&' is a local `and' operation | ||
#*** enable the output upon the event | ||
#... | ||
#*** enable the output when ii>0 and ii<3 (`&` is a local `and` operation ) |
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 don't remember why we put "local" here. Now it seems confusing...
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.
The solution of ex5.yml instead mentions a "logical" operation, it must be a typographical error.
Co-authored-by: yushan wang <[email protected]>
ex5.yml
Outdated
when: '$ii>0 & ' # `&' is a local `and' operation | ||
#*** enable the output upon the event | ||
#... | ||
#*** enable the output when ii>0 and ii<3 (`&` is a local `and` operation ) |
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.
The solution of ex5.yml instead mentions a "logical" operation, it must be a typographical error.
PDI_share("pcoord", pcoord, PDI_OUT); | ||
PDI_reclaim("pcoord"); | ||
PDI_share("dsize", dsize, PDI_OUT); | ||
PDI_reclaim("dsize"); | ||
PDI_share("psize", psize, PDI_OUT); | ||
PDI_reclaim("psize"); | ||
PDI_share("main_field", cur, PDI_OUT); | ||
PDI_reclaim("main_field"); | ||
|
||
|
||
// the main loop | ||
for (; ii<10; ++ii) { |
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.
May prefer less iterations to help with log readability.
Co-authored-by: JAuriac <[email protected]>
Co-authored-by: JAuriac <[email protected]>
No description provided.