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
dd14b36d
Commit
dd14b36d
authored
Aug 07, 2025
by
Chenggang Zhao
Browse files
Fix compilation
parent
c5facf5c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
csrc/kernels/internode_ll.cu
csrc/kernels/internode_ll.cu
+1
-1
No files found.
csrc/kernels/internode_ll.cu
View file @
dd14b36d
...
...
@@ -501,7 +501,7 @@ __forceinline__ __device__ void logfmt_check_amaxmin(uint8_t* meta_buffer, float
}
const
auto
&
casted
=
warp_reduce_and
<
kNumSendUnrolls
>
(
enable_cast
)
?
1u
<<
(
lane_id
/
kNumRecvUnrolls
)
:
0u
;
const
auto
&
num_casted_prefix
=
std
::
__popc
ount
(
warp_reduce_or
<
kNumRecvUnrolls
,
true
>
(
casted
)
&
((
1u
<<
(
lane_id
/
kNumRecvUnrolls
))
-
1
));
const
auto
&
num_casted_prefix
=
__popc
(
warp_reduce_or
<
kNumRecvUnrolls
,
true
>
(
casted
)
&
((
1u
<<
(
lane_id
/
kNumRecvUnrolls
))
-
1
));
if
(
lane_id
<
kNumLanes
and
lane_id
%
kNumRecvUnrolls
==
0
)
shared_cast_info
[
lane_id
/
kNumRecvUnrolls
]
=
(
num_casted_prefix
<<
1
)
|
(
casted
?
1u
:
0u
);
...
...
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