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
89f46609
Commit
89f46609
authored
Jun 06, 2023
by
Po-Yen, Chen
Browse files
Hide dummy member function
parent
58d1924b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
include/ck/utility/amd_wave_read_first_lane.hpp
include/ck/utility/amd_wave_read_first_lane.hpp
+6
-6
No files found.
include/ck/utility/amd_wave_read_first_lane.hpp
View file @
89f46609
...
...
@@ -58,16 +58,16 @@ struct get_carrier<3>
return
to
;
}
public:
__device__
carrier
(
value_type
value
)
noexcept
// method to trigger template substitution failure
carrier
(
const
carrier
&
other
)
noexcept
{
copy_n
(
reinterpret_cast
<
const
std
::
byte
*>
(
&
value
),
bytes
.
size
(),
bytes
.
begin
());
copy_n
(
other
.
bytes
.
begin
(
),
bytes
.
size
(),
bytes
.
begin
());
}
// method to trigger template substitution failure
__device__
carrier
&
operator
=
(
const
carrier
&
other
)
noexcept
public:
__device__
carrier
&
operator
=
(
value_type
value
)
noexcept
{
copy_n
(
other
.
bytes
.
begin
(
),
bytes
.
size
(),
bytes
.
begin
());
copy_n
(
reinterpret_cast
<
const
std
::
byte
*>
(
&
value
),
bytes
.
size
(),
bytes
.
begin
());
return
*
this
;
}
...
...
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