Tim Gymnich 16f41cb1b8
[mlir][amdgpu] Add Python bindings for TDM types (#172309)
Add bindings for:
- `TDMBaseType`
- `TDMDescriptorType`
- `TDMGatherBaseType`
2025-12-16 10:43:08 +00:00

68 lines
2.4 KiB
C++

//===- AMDGPU.cpp - C Interface for AMDGPU dialect ------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "mlir-c/Dialect/AMDGPU.h"
#include "mlir/CAPI/Registration.h"
#include "mlir/Dialect/AMDGPU/IR/AMDGPUDialect.h"
MLIR_DEFINE_CAPI_DIALECT_REGISTRATION(AMDGPU, amdgpu,
mlir::amdgpu::AMDGPUDialect)
using namespace mlir;
using namespace mlir::amdgpu;
//===---------------------------------------------------------------------===//
// TDMBaseType
//===---------------------------------------------------------------------===//
bool mlirTypeIsAAMDGPUTDMBaseType(MlirType type) {
return isa<amdgpu::TDMBaseType>(unwrap(type));
}
MlirTypeID mlirAMDGPUTDMBaseTypeGetTypeID() {
return wrap(amdgpu::TDMBaseType::getTypeID());
}
MlirType mlirAMDGPUTDMBaseTypeGet(MlirContext ctx, MlirType elementType) {
return wrap(amdgpu::TDMBaseType::get(unwrap(ctx), unwrap(elementType)));
}
//===---------------------------------------------------------------------===//
// TDMDescriptorType
//===---------------------------------------------------------------------===//
bool mlirTypeIsAAMDGPUTDMDescriptorType(MlirType type) {
return isa<amdgpu::TDMDescriptorType>(unwrap(type));
}
MlirTypeID mlirAMDGPUTDMDescriptorTypeGetTypeID() {
return wrap(amdgpu::TDMDescriptorType::getTypeID());
}
MlirType mlirAMDGPUTDMDescriptorTypeGet(MlirContext ctx) {
return wrap(amdgpu::TDMDescriptorType::get(unwrap(ctx)));
}
//===---------------------------------------------------------------------===//
// TDMGatherBaseType
//===---------------------------------------------------------------------===//
bool mlirTypeIsAAMDGPUTDMGatherBaseType(MlirType type) {
return isa<amdgpu::TDMGatherBaseType>(unwrap(type));
}
MlirTypeID mlirAMDGPUTDMGatherBaseTypeGetTypeID() {
return wrap(amdgpu::TDMGatherBaseType::getTypeID());
}
MlirType mlirAMDGPUTDMGatherBaseTypeGet(MlirContext ctx, MlirType elementType,
MlirType indexType) {
return wrap(amdgpu::TDMGatherBaseType::get(unwrap(ctx), unwrap(elementType),
unwrap(indexType)));
}