We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6cfd343 commit fb3e4e7Copy full SHA for fb3e4e7
mlir/include/mlir/Dialect/GPU/IR/GPUOps.td
@@ -61,7 +61,7 @@ class GPU_IndexOp<string mnemonic, list<Trait> traits = []> :
61
llvm::function_ref<void(mlir::Value, mlir::StringRef)> setNameFn) {
62
auto dimStr = stringifyDimension(getDimensionAttr().getValue());
63
auto opName = getOperationName();
64
- assert(opName.consume_front("gpu."));
+ opName.consume_front("gpu.");
65
SmallString<8> resultName({opName, "_", dimStr});
66
setNameFn(getResult(),resultName);
67
}
0 commit comments