Skip to content

Commit

Permalink
prov/cxi: disable retry logic for experimental collectives
Browse files Browse the repository at this point in the history
Signed-off-by: John Heemstra <heemstra@hpe.com>
  • Loading branch information
heemstra authored and swelch committed Jan 6, 2025
1 parent 007b747 commit 4285d10
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions prov/cxi/src/cxip_coll.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* Copyright (c) 2014 Intel Corporation, Inc. All rights reserved.
* Copyright (c) 2016 Cisco Systems, Inc. All rights reserved.
* Copyright (c) 2020-2024 Hewlett Packard Enterprise Development LP
* Copyright (c) 2020-2025 Hewlett Packard Enterprise Development LP
* Support for accelerated collective reductions.
*/

Expand Down Expand Up @@ -2021,7 +2021,9 @@ bool _is_red_timed_out(struct cxip_coll_reduction *reduction)
reduction->red_id);
return true;
}
return _tsexp(&reduction->tv_expires);

/* disable timeout logic for now */
return false;
}

/* Root node state machine progress.
Expand Down

0 comments on commit 4285d10

Please sign in to comment.