-
Notifications
You must be signed in to change notification settings - Fork 79
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
Catalyst: Add Tag to Catalyst2 TPL + Cleaning #448
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
c3bbe78
Cleaned up Catalyst API 2 per Greg S suggestions in previous merge req
ajpelle 6293058
Removed unnecessary cmake option: cmake_export_commands
ajpelle cd98698
Merge branch 'sandialabs:master' into catalyst_add_phactori_hook
Naapple 97e99f6
Updated catalyst2 TPL to point to v2.0.0 tag
ajpelle 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
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 |
---|---|---|
|
@@ -262,7 +262,7 @@ namespace Iocatalyst { | |
errmsg << "Catalyst pipeline is not a multi-input pipeline"; | ||
IOSS_ERROR(errmsg); | ||
} | ||
auto name = p.catalystMultiInputPipelineName; | ||
const auto name = p.catalystMultiInputPipelineName; | ||
for (auto cp : catPipes) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should this be |
||
if (cp.second.enableCatalystMultiInputPipeline && | ||
cp.second.catalystMultiInputPipelineName == name) { | ||
|
@@ -280,7 +280,7 @@ namespace Iocatalyst { | |
errmsg << "Catalyst pipeline is not a multi-input pipeline"; | ||
IOSS_ERROR(errmsg); | ||
} | ||
auto name = p.catalystMultiInputPipelineName; | ||
const auto name = p.catalystMultiInputPipelineName; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same as above. |
||
for (auto &cp : catPipes) { | ||
if (cp.second.enableCatalystMultiInputPipeline && | ||
cp.second.catalystMultiInputPipelineName == name) { | ||
|
@@ -295,8 +295,8 @@ namespace Iocatalyst { | |
void CatalystManager::broadCastString(IOSS_MAYBE_UNUSED std::string &s, | ||
IOSS_MAYBE_UNUSED const Ioss::ParallelUtils &putils) | ||
{ | ||
IOSS_PAR_UNUSED(s); | ||
IOSS_PAR_UNUSED(putils); | ||
IOSS_MAYBE_UNUSED(s); | ||
IOSS_MAYBE_UNUSED(putils); | ||
#ifdef SEACAS_HAVE_MPI | ||
int size = s.size(); | ||
putils.broadcast(size); | ||
|
@@ -310,8 +310,8 @@ namespace Iocatalyst { | |
void CatalystManager::broadCastStatusCode(IOSS_MAYBE_UNUSED bool &statusCode, | ||
IOSS_MAYBE_UNUSED const Ioss::ParallelUtils &putils) | ||
{ | ||
IOSS_PAR_UNUSED(statusCode); | ||
IOSS_PAR_UNUSED(putils); | ||
IOSS_MAYBE_UNUSED(statusCode); | ||
IOSS_MAYBE_UNUSED(putils); | ||
#ifdef SEACAS_HAVE_MPI | ||
|
||
int code = statusCode; | ||
|
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.
Could this be
const auto &name