File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
mlir/lib/Dialect/Linalg/TransformOps Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -3889,7 +3889,7 @@ DiagnosedSilenceableFailure transform::WinogradConv2DOp::applyToOne(
38893889 << " this operation is not supported to convert to Winograd Conv2D" ;
38903890 }
38913891
3892- if (supported && failed (maybeTransformed)) {
3892+ if (failed (maybeTransformed)) {
38933893 return emitSilenceableError () << " apply Winograd Conv2D failed" ;
38943894 }
38953895
@@ -3927,7 +3927,7 @@ DiagnosedSilenceableFailure transform::DecomposeWinogradOp::applyToOne(
39273927 return diag;
39283928 }
39293929
3930- if (supported && failed (maybeTransformed)) {
3930+ if (failed (maybeTransformed)) {
39313931 DiagnosedSilenceableFailure diag =
39323932 emitSilenceableError () << " decompose Winograd operations failed" ;
39333933 diag.attachNote (target->getLoc ()) << " target op" ;
You can’t perform that action at this time.
0 commit comments