| 90 | } |
| 91 | |
| 92 | MlirType mlirCudaTileTileTypeGetChecked(MlirContext ctx, intptr_t rank, |
| 93 | const int64_t *shape, |
| 94 | MlirType elementType) { |
| 95 | ArrayRef<int64_t> shapeRef(shape, rank); |
| 96 | return wrap( |
| 97 | getCheckedType<TileType>(unwrap(ctx), shapeRef, unwrap(elementType))); |
| 98 | } |
| 99 | |
| 100 | //===----------------------------------------------------------------------===// |
| 101 | // TokenType |