-
Notifications
You must be signed in to change notification settings - Fork 706
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18877 from boegel/20230928120259_new_pr_UCX1141
use UCX 1.14.1 instead of 1.15.0-rc4 in OpenMPI 4.1.5
- Loading branch information
Showing
4 changed files
with
39 additions
and
7 deletions.
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
31 changes: 31 additions & 0 deletions
31
easybuild/easyconfigs/u/UCX/UCX-1.14.1_fix-type-conflict-uct_md_mem_advise.patch
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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
From 8d6032ec864190c9f079d96e731c5004a975e153 Mon Sep 17 00:00:00 2001 | ||
From: Jan Ciesko <jan.ciesko@gmail.com> | ||
Date: Thu, 5 Jan 2023 12:31:39 -0800 | ||
Subject: [PATCH] UCT/BASE: Fix conflicting types for 'uct_md_mem_advise'. | ||
|
||
Signed-off-by: Howard Pritchard <howardp@lanl.gov> | ||
--- | ||
src/uct/base/uct_md.c | 3 ++- | ||
1 file changed, 2 insertions(+), 1 deletion(-) | ||
|
||
diff --git a/src/uct/base/uct_md.c b/src/uct/base/uct_md.c | ||
index d7f4c326c0b..3830e16618b 100644 | ||
--- a/src/uct/base/uct_md.c | ||
+++ b/src/uct/base/uct_md.c | ||
@@ -2,6 +2,7 @@ | ||
* Copyright (c) NVIDIA CORPORATION & AFFILIATES, 2001-2014. ALL RIGHTS RESERVED. | ||
* Copyright (C) UT-Battelle, LLC. 2015. ALL RIGHTS RESERVED. | ||
* Copyright (C) ARM Ltd. 2016-2017. ALL RIGHTS RESERVED. | ||
+* Copyright (c) Triad National Security, LLC. 2023. ALL RIGHTS RESERVED. | ||
* | ||
* See file LICENSE for terms. | ||
*/ | ||
@@ -554,7 +555,7 @@ ucs_status_t uct_md_mem_free(uct_md_h md, uct_mem_h memh) | ||
|
||
ucs_status_t | ||
uct_md_mem_advise(uct_md_h md, uct_mem_h memh, void *addr, size_t length, | ||
- unsigned advice) | ||
+ uct_mem_advice_t advice) | ||
{ | ||
if ((length == 0) || (addr == NULL)) { | ||
return UCS_ERR_INVALID_PARAM; |