(shp)
| 206 | def imageh(shp): return ImageDType(100, 16, "imageh", 'e', 1, None, dtypes.float32, AddrSpace.GLOBAL, 1, prod(shp), shp) |
| 207 | @staticmethod |
| 208 | def imagef(shp): return ImageDType(100, 32, "imagef", 'f', 1, None, dtypes.float32, AddrSpace.GLOBAL, 1, prod(shp), shp) |
| 209 | |
| 210 | default_float: ClassVar[DType] = float32 |
| 211 | default_int: ClassVar[DType] = int32 |