-
Notifications
You must be signed in to change notification settings - Fork 25
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
Update the operators for 2023.2.pre0 #644
Merged
Merged
Changes from 5 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
56145b4
Update code_generation.py
PProfizi 4cad020
Operators generated with dpf_standalone_win_v23.2.pre0 from #DPF - Se…
PProfizi 02b9a9b
Update the operator generation script to have everything in one step.
PProfizi 4021001
Regenerated operators
PProfizi d6dd396
Update code_generation.py
PProfizi 0447a29
Add server operators
PProfizi 808d6b6
Loosen retry criteria for tests_remote_workflow and test_workflow (du…
PProfizi 4972e60
Revert to manual generation
PProfizi 4fe4d2c
Fix init files for hdf5
PProfizi bc101ff
fix flake8
PProfizi 53545b6
Loosen retries
PProfizi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
from . import math | ||
from . import result | ||
from . import utility | ||
from . import min_max | ||
from . import result | ||
from . import scoping | ||
from . import filter | ||
from . import logic | ||
from . import metadata | ||
from . import serialization | ||
from . import min_max | ||
from . import mesh | ||
from . import geo | ||
from . import serialization | ||
from . import averaging | ||
from . import geo | ||
from . import invariant | ||
from . import mapping |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,26 @@ | ||
from .elemental_difference import elemental_difference | ||
from .elemental_nodal_to_nodal import elemental_nodal_to_nodal | ||
from .elemental_nodal_to_nodal_fc import elemental_nodal_to_nodal_fc | ||
from .elemental_to_nodal import elemental_to_nodal | ||
from .elemental_to_nodal_fc import elemental_to_nodal_fc | ||
from .elemental_to_elemental_nodal import elemental_to_elemental_nodal | ||
from .nodal_difference import nodal_difference | ||
from .elemental_to_elemental_nodal_fc import elemental_to_elemental_nodal_fc | ||
from .nodal_difference_fc import nodal_difference_fc | ||
from .elemental_difference_fc import elemental_difference_fc | ||
from .nodal_fraction_fc import nodal_fraction_fc | ||
from .elemental_nodal_to_nodal_elemental_fc import elemental_nodal_to_nodal_elemental_fc | ||
from .elemental_fraction_fc import elemental_fraction_fc | ||
from .to_nodal import to_nodal | ||
from .nodal_difference import nodal_difference | ||
from .elemental_to_elemental_nodal import elemental_to_elemental_nodal | ||
from .to_nodal_fc import to_nodal_fc | ||
from .nodal_extend_to_mid_nodes import nodal_extend_to_mid_nodes | ||
from .nodal_difference_fc import nodal_difference_fc | ||
from .elemental_to_elemental_nodal_fc import elemental_to_elemental_nodal_fc | ||
from .elemental_nodal_to_nodal_elemental import elemental_nodal_to_nodal_elemental | ||
from .extend_to_mid_nodes import extend_to_mid_nodes | ||
from .extend_to_mid_nodes_fc import extend_to_mid_nodes_fc | ||
from .nodal_fraction_fc import nodal_fraction_fc | ||
from .elemental_nodal_to_nodal_elemental_fc import elemental_nodal_to_nodal_elemental_fc | ||
from .elemental_mean import elemental_mean | ||
from .elemental_mean_fc import elemental_mean_fc | ||
from .to_elemental_fc import to_elemental_fc | ||
from .gauss_to_node_fc import gauss_to_node_fc | ||
from .nodal_to_elemental import nodal_to_elemental | ||
from .nodal_to_elemental_fc import nodal_to_elemental_fc | ||
from .to_elemental_nodal_fc import to_elemental_nodal_fc | ||
from .elemental_fraction_fc import elemental_fraction_fc | ||
from .elemental_difference import elemental_difference | ||
from .elemental_difference_fc import elemental_difference_fc | ||
from .extend_to_mid_nodes_fc import extend_to_mid_nodes_fc | ||
from .extend_to_mid_nodes import extend_to_mid_nodes |
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 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 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
Oops, something went wrong.
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.
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.
This will only work for PREMIUM. Should we explicitly add it as context?
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.
@rafacanton, sure, we can add it explicitely at the beginning of the script.
Also, sorry about the confusion Rafael, the problems with the constructors of the operators is that there is a second step in the operator generation, which I now added to the script.