-
Notifications
You must be signed in to change notification settings - Fork 65
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 gyre example and high level mesh bp examples driver #1296
Conversation
// desc is an output? | ||
conduit::Node desc; |
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 think it is an output. Looking at the tests it looks like it is an optional input. Might want to consider how users could provide desc
for this case when using this generate infrastructure.
def test_examples_generate_default_opts(self): | ||
opts = conduit.Node() | ||
blueprint.mesh.examples.generate_default_options(opts) | ||
print(opts) | ||
enames = ["braid", | ||
"basic", | ||
"strided_structured", | ||
"grid", | ||
"spiral", | ||
"polytess", | ||
"polychain", | ||
"misc", | ||
"adjset_uniform", | ||
"gyre", | ||
"julia", | ||
"julia_nestsets_simple", | ||
"julia_nestsets_complex", | ||
"polystar", | ||
"related_boundary", | ||
"rz_cylinder", | ||
"tiled", | ||
"venn"] | ||
|
||
for ename in enames: | ||
opts = conduit.Node() | ||
blueprint.mesh.examples.generate_default_options(opts,ename) | ||
print(ename) | ||
print(opts) |
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 don't want to baseline these?
No description provided.