remove outdated comments (#7018)

This commit is contained in:
chenyu
2024-10-12 10:51:07 -04:00
committed by GitHub
parent 85a45164fb
commit 23faeacb23
3 changed files with 0 additions and 3 deletions

View File

@@ -84,7 +84,6 @@ class dtypes:
return {dtypes.float16: (5, 10), dtypes.bfloat16: (8, 7), dtypes.float32: (8, 23), dtypes.float64: (11, 52)}[dtype]
@staticmethod
def fields() -> Dict[str, DType]: return DTYPES_DICT
# TODO: priority should be higher than bool
void: Final[DType] = DType(-1, 0, "void", None, 1)
bool: Final[DType] = DType(0, 1, "bool", '?', 1)
int8: Final[DType] = DType(1, 1, "char", 'b', 1)