You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@foreverlms the lower bound is inclusive as well since the domain of an integer is [-2**(Bits-1), 2**(Bits-1) - 1].
For example the domain of 8-bit integer (i.e., Bits=8) is [-128, 127].
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
The assertion should be
assert(value <= upper_bound)
as theupper_bound
is inclusive.The text was updated successfully, but these errors were encountered: