| 72 | } |
| 73 | |
| 74 | MlirType mlirCudaTileTileTypeGet(MlirContext ctx, intptr_t rank, |
| 75 | const int64_t *shape, MlirType elementType) { |
| 76 | ArrayRef<int64_t> shapeRef(shape, rank); |
| 77 | return wrap(TileType::get(unwrap(ctx), shapeRef, unwrap(elementType))); |
| 78 | } |
| 79 | |
| 80 | MlirType mlirCudaTileTileTypeGetElementType(MlirType type) { |
| 81 | return wrap(cast<TileType>(unwrap(type)).getElementType()); |
nothing calls this directly
no outgoing calls
no test coverage detected