| 82 | } |
| 83 | |
| 84 | intptr_t mlirCudaTileTileTypeGetRank(MlirType type) { |
| 85 | return cast<TileType>(unwrap(type)).getRank(); |
| 86 | } |
| 87 | |
| 88 | int64_t mlirCudaTileTileTypeGetDimSize(MlirType type, intptr_t pos) { |
| 89 | return cast<TileType>(unwrap(type)).getDimSize(pos); |