File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
include/mlir/Dialect/LLVMIR Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -4062,8 +4062,8 @@ def NVVM_ClusterLaunchControlTryCancelOp
4062
4062
}];
4063
4063
4064
4064
let arguments = (ins UnitAttr:$multicast,
4065
- LLVM_PointerShared: $addr ,
4066
- LLVM_PointerShared: $mbar );
4065
+ LLVM_PointerShared: $smemAddress ,
4066
+ LLVM_PointerShared: $mbarrier );
4067
4067
4068
4068
let assemblyFormat = "(`multicast` $multicast^ `,`)? $addr `,` $mbar attr-dict";
4069
4069
Original file line number Diff line number Diff line change @@ -2110,8 +2110,8 @@ NVVM::IDArgPair ClusterLaunchControlTryCancelOp::getIntrinsicIDAndArgs(
2110
2110
Operation &op, LLVM::ModuleTranslation &mt, llvm::IRBuilderBase &builder) {
2111
2111
auto curOp = cast<NVVM::ClusterLaunchControlTryCancelOp>(op);
2112
2112
llvm::SmallVector<llvm::Value *> args;
2113
- args.push_back (mt.lookupValue (curOp.getAddr ()));
2114
- args.push_back (mt.lookupValue (curOp.getMbar ()));
2113
+ args.push_back (mt.lookupValue (curOp.getSmemAddress ()));
2114
+ args.push_back (mt.lookupValue (curOp.getMbarrrier ()));
2115
2115
2116
2116
return curOp.getMulticast ()
2117
2117
? NVVM::IDArgPair (
You can’t perform that action at this time.
0 commit comments