Commit d201acc0 authored by mtgu0705's avatar mtgu0705
Browse files

modified the int4 to unsigned int4.

parent 43fd4742
......@@ -15,7 +15,7 @@ using int4_t = _BitInt(4);
// custom data type - pack int4 data
struct pk_i4_t
{
using type = int8_t;
using type = uint8_t;
type data;
__host__ __device__ constexpr pk_i4_t() : data{type{}} {}
__host__ __device__ constexpr pk_i4_t(type init) : data{init} {}
......
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