From 7c5c2c8a2efe883e9b79dde5c4d76ddd159e25f0 Mon Sep 17 00:00:00 2001 From: Rostyslav Geyyer Date: Wed, 12 Feb 2025 16:02:35 +0000 Subject: [PATCH] Fix ctor --- include/ck/utility/data_type.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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