Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion include/cutlass/exmy_base.h
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ struct FpBitRepresentation {
using Storage = StorageType;

#if (CUTLASS_CXX17_OR_LATER)
static_assert(cutlass::platform::is_unsigned_v<Storage>, "Use an unsigned integer for StorageType");
static_assert(CUTLASS_STL_NAMESPACE::is_unsigned<Storage>::value, "Use an unsigned integer for StorageType");
#endif
static constexpr bool IS_SIGNED = IsSigned;
// Canonical NaN is always represented as exponent=11...11 and mantissa=11...11, if it exists
Expand Down