Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
DeepEP
Commits
c50f3d6f
Commit
c50f3d6f
authored
Jul 08, 2025
by
Chenggang Zhao
Browse files
Better debugging messages
parent
eef7ab50
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
csrc/kernels/utils.cuh
csrc/kernels/utils.cuh
+2
-2
No files found.
csrc/kernels/utils.cuh
View file @
c50f3d6f
...
...
@@ -463,8 +463,8 @@ barrier_block(int** barrier_signal_ptrs, int rank) {
if
(
__all_sync
(
0xffffffff
,
value
<=
0
))
break
;
if
(
clock64
()
-
start_time
>
NUM_TIMEOUT_CYCLES
and
get_lane_id
()
==
0
)
{
printf
(
"DeepEP timeout check failed: rank = %d, thread = %d)
\n
"
,
rank
,
thread_id
);
if
(
clock64
()
-
start_time
>
NUM_TIMEOUT_CYCLES
and
thread_id
<
kNumRanks
)
{
printf
(
"DeepEP timeout check failed: rank = %d, thread =
%d, value =
%d)
\n
"
,
rank
,
thread_id
,
value
);
trap
();
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment