Why is alias U8 = Dtype.uint8 not a type?
Gives
expected a type, not a value
on the U8
in the function signature. What am I missing?2 Replies
You're looking for the
UInt8
type.
DType
is an enum that is used to be generic across different types.Ahhh, I see. Thank you!