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 ad7937d commit e204b91Copy full SHA for e204b91
mlir/lib/Conversion/GPUCommon/GPUToLLVMConversion.cpp
@@ -814,7 +814,7 @@ LogicalResult ConvertAllocOpToGpuRuntimeCallPattern::matchAndRewrite(
814
if (isShared && allocOp.getAsyncToken())
815
return rewriter.notifyMatchFailure(
816
allocOp, "Host Shared allocation cannot be done async");
817
- else if (!isShared && failed(isAsyncWithOneDependency(rewriter, allocOp)))
+ if (!isShared && failed(isAsyncWithOneDependency(rewriter, allocOp)))
818
return failure();
819
820
// Get shape of the memref as values: static sizes are constant
0 commit comments