[Mlir-commits] [llvm] [mlir] [MLIR][NVVM] Add NVVMRequiresSM op trait (PR #126886)
Srinivasa Ravi
llvmlistbot at llvm.org
Fri Mar 14 07:46:44 PDT 2025
================
@@ -1793,6 +1793,22 @@ void GPUModuleOp::setTargets(ArrayRef<TargetAttrInterface> targets) {
targetsAttr = ArrayAttr::get(getContext(), targetsVector);
}
+LogicalResult GPUModuleOp::verify() {
+ auto targets = getOperation()->getAttrOfType<ArrayAttr>("targets");
+
+ if (!targets)
+ return success();
+
----------------
Wolfram70 wrote:
Could we have a parameter in `NVVMTargetAttr` like a `verify` flag that can be set to disable these checks? In that case, we could return before we walk through the GPU module.
https://github.com/llvm/llvm-project/pull/126886
More information about the Mlir-commits
mailing list