"docs/source/api/pipelines/stable_diffusion/overview.mdx" did not exist on "0eb507f2af991b1f0b6c2ede5b20a994999e85d3"
Commit 7c5c2c8a authored by Rostyslav Geyyer's avatar Rostyslav Geyyer
Browse files

Fix ctor

parent 737d53dc
......@@ -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
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment