-
-
Couldn't load subscription status.
- Fork 27
openmpi v5.0.4 #169
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
Merged
Merged
openmpi v5.0.4 #169
Changes from 5 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
f629ea3
updated v5.0.4
regro-cf-autotick-bot 5adcced
MNT: Re-rendered with conda-build 24.5.1, conda-smithy 3.37.1, and co…
regro-cf-autotick-bot 3c2f5f7
recipe: Add patch from open-mpi/ompi#12694
dalcinl 30561c7
patch for LDFLAGS typo on mac
minrk 3852b25
use --with-mpi-moduledir to put mods in include
minrk 1cee4bd
use internal ${includedir} variable for moduledir
minrk 9dbe6f2
recipe: simplify configuration of MPI compiler wrapper flags
dalcinl 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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 |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| From e70f0a4afb1277e52389267777d260229b468ec0 Mon Sep 17 00:00:00 2001 | ||
| From: Min RK <[email protected]> | ||
| Date: Mon, 29 Jul 2024 12:50:59 +0200 | ||
| Subject: [PATCH] typo in LDFLAGS_save_xcode variable name | ||
|
|
||
| resulted in effectively overriding LDFLAGS='' on mac | ||
| --- | ||
| config/ompi_setup_fc.m4 | 4 ++-- | ||
| 1 file changed, 2 insertions(+), 2 deletions(-) | ||
|
|
||
| diff --git a/config/ompi_setup_fc.m4 b/config/ompi_setup_fc.m4 | ||
| index 53c3cd96da..c147bf2b60 100644 | ||
| --- a/config/ompi_setup_fc.m4 | ||
| +++ b/config/ompi_setup_fc.m4 | ||
| @@ -212,11 +212,11 @@ end program | ||
| AS_IF([test $xcode_happy -eq 1], | ||
| [ # Restore LDFLAFGS + the new flags (i.e., get rid of the | ||
| # "-L." we added for this test) | ||
| - LDFLAGS="$LDFLAGS_xcode_save $1" | ||
| + LDFLAGS="$LDFLAGS_save_xcode $1" | ||
| $2], | ||
| [ # If we failed the test, reset LDFLAGS back to its | ||
| # original value. | ||
| - LDFLAGS=$LDFLAGS_xcode_save | ||
| + LDFLAGS=$LDFLAGS_save_xcode | ||
| $3]) | ||
|
|
||
| OPAL_VAR_SCOPE_POP | ||
| -- | ||
| 2.45.0 | ||
|
|
This file contains hidden or 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 hidden or 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 |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| From 2085433c0977d37cbd1631fa7695a29de3f578c5 Mon Sep 17 00:00:00 2001 | ||
| From: Jeff Squyres <[email protected]> | ||
| Date: Thu, 6 Jun 2024 11:22:53 -0400 | ||
| Subject: [PATCH] aarch64_functions.c: fix trivial typo | ||
|
|
||
| Signed-off-by: Jeff Squyres <[email protected]> | ||
| (cherry picked from commit 7c5ef484b6f8ee4d13a40e2d6cd84dc11c19c6fe) | ||
| --- | ||
| ompi/mca/op/aarch64/op_aarch64_functions.c | 2 +- | ||
| 1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
|
||
| diff --git a/ompi/mca/op/aarch64/op_aarch64_functions.c b/ompi/mca/op/aarch64/op_aarch64_functions.c | ||
| index ea4fd488655..d5878913f2f 100644 | ||
| --- a/ompi/mca/op/aarch64/op_aarch64_functions.c | ||
| +++ b/ompi/mca/op/aarch64/op_aarch64_functions.c | ||
| @@ -119,7 +119,7 @@ _Generic((*(out)), \ | ||
| int left_over = *count; \ | ||
| type##type_size##_t *in = (type##type_size##_t *) _in, \ | ||
| *out = (type##type_size##_t *) _out; \ | ||
| - OP_CONCAT(OMPI_OP_TYPE_PREPEND, type##type_size####x##type_cnt##_t) vsrc, vdst; \ | ||
| + OP_CONCAT(OMPI_OP_TYPE_PREPEND, type##type_size##x##type_cnt##_t) vsrc, vdst; \ | ||
| for (; left_over >= type_cnt; left_over -= type_cnt) { \ | ||
| vsrc = vld1q##_##type_name##type_size(in); \ | ||
| vdst = vld1q##_##type_name##type_size(out); \ |
This file contains hidden or 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
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.
Uh oh!
There was an error while loading. Please reload this page.