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
a0e16481
Commit
a0e16481
authored
May 07, 2023
by
Po-Yen, Chen
Browse files
Merge branch 'feature/fix-descriptor-attr-not-copied' into feature/integrage-karg-simplification-pr
parents
d5ec7945
18495464
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
include/ck/tensor_description/multi_index_transform.hpp
include/ck/tensor_description/multi_index_transform.hpp
+3
-3
No files found.
include/ck/tensor_description/multi_index_transform.hpp
View file @
a0e16481
...
@@ -393,9 +393,9 @@ struct Embed
...
@@ -393,9 +393,9 @@ struct Embed
__host__
__device__
constexpr
Embed
()
=
default
;
__host__
__device__
constexpr
Embed
()
=
default
;
__host__
__device__
constexpr
Embed
(
const
UpLengths
&
up_lengths
,
/// NOTE: force copying here to prevent uninitialized data members (on device side)
const
Coefficients
&
coefficients
)
__host__
__device__
constexpr
Embed
(
UpLengths
up_lengths
,
Coefficients
coefficients
)
:
up_lengths_
{
up_lengths
},
coefficients_
{
coefficients
}
:
up_lengths_
{
std
::
move
(
up_lengths
)
},
coefficients_
{
std
::
move
(
coefficients
)
}
{
{
}
}
...
...
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