Add d type

This commit is contained in:
Nicolas Mowen 2025-04-17 17:12:20 -06:00
parent 97a78af7f9
commit 91be6073d3

View File

@ -31,6 +31,7 @@ class InputTensorEnum(str, Enum):
class InputDTypeEnum(str, Enum):
float = "float"
float_denorm = "float_denorm" # non-normalized float
int = "int"