(shp)
| 204 | # NOTE: these are image dtypes |
| 205 | @staticmethod |
| 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 |