Unverified Commit cbcac3f5 authored by Tim Moon's avatar Tim Moon Committed by GitHub
Browse files

Use unsigned char when instantiating DType::kByte (#540)



Use unsigned char for byte dtype
Signed-off-by: default avatarTim Moon <tmoon@nvidia.com>
parent 666539f3
......@@ -122,7 +122,7 @@ struct TypeInfo{
using namespace transformer_engine; \
case DType::kByte: \
{ \
using type = float; \
using type = unsigned char; \
{__VA_ARGS__} \
} \
break; \
......
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