You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### Description
Fix layout transformer for FusedConv.
The current layout transformer will transform `FusedConv` (kMSDomain)
into `FusedConv` (kMSInternalNHWCDomain) if the EP wants channels_last.
However, kMSInternalNHWCDomain uses OpType `Conv` for both Conv and
FusedConv, so `FusedConv` (kMSInternalNHWCDomain) is invalid
(unregistered op).
This PR fixes this and allows layout transformer change `FusedConv`
(kMSDomain) into `Conv` (kMSInternalNHWCDomain).
### Motivation and Context
<!-- - Why is this change required? What problem does it solve?
- If it fixes an open issue, please link to the issue here. -->
0 commit comments