Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .compatibility
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
2.1.0-12.1.0
2.2.2-12.1.0
2 changes: 1 addition & 1 deletion colossalai/tensor/d_tensor/layout_converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ def _group_alive_check(cached_comm_action_sequence):
for process_group in used_process_groups:
try:
dist.get_rank(process_group)
except RuntimeError as e:
except (ValueError, RuntimeError) as e:
Comment thread
ver217 marked this conversation as resolved.
# If the group is not registered, it means it has been deleted
if str(e) == (
f"Group {process_group} is not registered, please create group with torch.distributed.new_group API"
Expand Down