Commit f52323fc authored by mtgu0705's avatar mtgu0705
Browse files

fixed

parent e9520f14
......@@ -19,6 +19,8 @@ struct pk_i4_t
type data;
__host__ __device__ constexpr pk_i4_t() : data{type{}} {}
__host__ __device__ constexpr pk_i4_t(type init) : data{init} {}
__host__ __device__ constexpr operator float() const { return static_cast<float>(data); }
};
inline constexpr auto next_pow2(uint32_t x)
......
......@@ -105,8 +105,6 @@ int profile_gemm_b_scale(int argc, char* argv[])
using F32 = float;
using F16 = ck::half_t;
using BF16 = ck::bhalf_t;
using F8 = ck::f8_t;
using I4 = ck::pk_i4_t;
using Row = ck::tensor_layout::gemm::RowMajor;
......
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