Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
gaoqiong
composable_kernel
Commits
290791c8
Commit
290791c8
authored
Jun 01, 2023
by
Po-Yen, Chen
Browse files
Fix wrong pointer type
parent
b94fd0b2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
include/ck/utility/amd_wave_read_first_lane.hpp
include/ck/utility/amd_wave_read_first_lane.hpp
+1
-1
No files found.
include/ck/utility/amd_wave_read_first_lane.hpp
View file @
290791c8
...
@@ -71,7 +71,7 @@ __device__ auto amd_wave_read_first_lane(const Object& obj)
...
@@ -71,7 +71,7 @@ __device__ auto amd_wave_read_first_lane(const Object& obj)
{
{
using
Carrier
=
detail
::
get_unsigned_int_t
<
RemainedSize
>
;
using
Carrier
=
detail
::
get_unsigned_int_t
<
RemainedSize
>
;
*
reinterpret_cast
<
Carrier
>
(
to_obj
+
CompleteSgprCopyBoundary
)
=
amd_wave_read_first_lane
(
*
reinterpret_cast
<
Carrier
*
>
(
to_obj
+
CompleteSgprCopyBoundary
)
=
amd_wave_read_first_lane
(
*
reinterpret_cast
<
const
Carrier
*>
(
from_obj
+
CompleteSgprCopyBoundary
));
*
reinterpret_cast
<
const
Carrier
*>
(
from_obj
+
CompleteSgprCopyBoundary
));
}
}
...
...
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