| 695 | //===----------------------------------------------------------------------===// |
| 696 | |
| 697 | MlirType mlirCudaTileIntegerTypeGet(MlirContext ctx, unsigned width) { |
| 698 | return wrap(IntegerType::get(unwrap(ctx), width)); |
| 699 | } |
| 700 | |
| 701 | MlirAttribute mlirCudaTileIntegerAttrGet(MlirType type, int64_t value) { |
| 702 | return wrap(IntegerAttr::get(unwrap(type), value)); |