mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-06-06 15:54:31 +00:00
Fix ctor
This commit is contained in:
@@ -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 <index_t I>
|
||||
__host__ __device__ inline type unpack(Number<I>) const
|
||||
|
||||
Reference in New Issue
Block a user