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(
3889
3889
<< " this operation is not supported to convert to Winograd Conv2D" ;
3890
3890
}
3891
3891
3892
- if (supported && failed (maybeTransformed)) {
3892
+ if (failed (maybeTransformed)) {
3893
3893
return emitSilenceableError () << " apply Winograd Conv2D failed" ;
3894
3894
}
3895
3895
@@ -3927,7 +3927,7 @@ DiagnosedSilenceableFailure transform::DecomposeWinogradOp::applyToOne(
3927
3927
return diag;
3928
3928
}
3929
3929
3930
- if (supported && failed (maybeTransformed)) {
3930
+ if (failed (maybeTransformed)) {
3931
3931
DiagnosedSilenceableFailure diag =
3932
3932
emitSilenceableError () << " decompose Winograd operations failed" ;
3933
3933
diag.attachNote (target->getLoc ()) << " target op" ;
You can’t perform that action at this time.
0 commit comments