diff --git a/include/ck/utility/data_type.hpp b/include/ck/utility/data_type.hpp index f90fcf6791..522d5547d5 100644 --- a/include/ck/utility/data_type.hpp +++ b/include/ck/utility/data_type.hpp @@ -32,8 +32,8 @@ struct f4x2_pk_t { using type = uint8_t; type data; - f4x2_pk_t() : data{type{}} {} - f4x2_pk_t(type init) : data{init} {} + __host__ __device__ f4x2_pk_t() : data{type{}} {} + __host__ __device__ f4x2_pk_t(type init) : data{init} {} template __host__ __device__ inline type unpack(Number) const