-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Open
Labels
Description
Describe the bug
I got an Assertion failure while I tried 55_hopper_int4_fp8_gemm
This was due to the following incorrect assertion logic at [this line]:(
cutlass/include/cutlass/integer_subbyte.h
Line 96 in 8aa95db
| assert(value < upper_bound); |
[[maybe_unused]] constexpr int lower_bound = -(1 << (Bits - 1));
[[maybe_unused]] constexpr int upper_bound = (1 << (Bits - 1)) - 1;
assert(value >= lower_bound);
assert(value < upper_bound); # HEREThe assertion should be assert(value <= upper_bound) as the upper_bound is inclusive.
Reactions are currently unavailable