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_ROCM
Commits
fd019e14
Commit
fd019e14
authored
Jun 10, 2024
by
Rostyslav Geyyer
Browse files
Fix CTORs
parent
cf01d718
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
include/ck/utility/data_type.hpp
include/ck/utility/data_type.hpp
+5
-5
No files found.
include/ck/utility/data_type.hpp
View file @
fd019e14
...
...
@@ -1031,7 +1031,7 @@ struct non_native_vector_type<T, 1>
StaticallyIndexedArray
<
d1_t
,
1
>
d1x1_
;
}
data_
;
__host__
__device__
constexpr
non_native_vector_type
()
:
data_
{
type
{
0
}}
{}
__host__
__device__
constexpr
non_native_vector_type
()
:
data_
{
type
{}}
{}
__host__
__device__
constexpr
non_native_vector_type
(
type
v
)
:
data_
{
v
}
{}
...
...
@@ -1069,7 +1069,7 @@ struct non_native_vector_type<T, 2>
StaticallyIndexedArray
<
d2_t
,
1
>
d2x1_
;
}
data_
;
__host__
__device__
constexpr
non_native_vector_type
()
:
data_
{
type
{
0
}}
{}
__host__
__device__
constexpr
non_native_vector_type
()
:
data_
{
type
{}}
{}
__host__
__device__
constexpr
non_native_vector_type
(
type
v
)
:
data_
{
v
}
{}
...
...
@@ -1131,7 +1131,7 @@ struct non_native_vector_type<T, 4>
StaticallyIndexedArray
<
d4_t
,
1
>
d4x1_
;
}
data_
;
__host__
__device__
constexpr
non_native_vector_type
()
:
data_
{
type
{
0
}}
{}
__host__
__device__
constexpr
non_native_vector_type
()
:
data_
{
type
{}}
{}
__host__
__device__
constexpr
non_native_vector_type
(
type
v
)
:
data_
{
v
}
{}
...
...
@@ -1389,7 +1389,7 @@ struct non_native_vector_type<T, 32>
StaticallyIndexedArray
<
d32_t
,
1
>
d32x1_
;
}
data_
;
__host__
__device__
constexpr
non_native_vector_type
()
:
data_
{
type
{
0
}}
{}
__host__
__device__
constexpr
non_native_vector_type
()
:
data_
{
type
{}}
{}
__host__
__device__
constexpr
non_native_vector_type
(
type
v
)
:
data_
{
v
}
{}
...
...
@@ -1497,7 +1497,7 @@ struct non_native_vector_type<T, 64>
StaticallyIndexedArray
<
d64_t
,
1
>
d64x1_
;
}
data_
;
__host__
__device__
constexpr
non_native_vector_type
()
:
data_
{
type
{
0
}}
{}
__host__
__device__
constexpr
non_native_vector_type
()
:
data_
{
type
{}}
{}
__host__
__device__
constexpr
non_native_vector_type
(
type
v
)
:
data_
{
v
}
{}
...
...
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