Skip to content

Commit

Permalink
[js/webgpu] Enable conv+clip fuse on mobilenetv2-12-f16 (#21234)
Browse files Browse the repository at this point in the history
There are failures for some inputs.

### Description
<!-- Describe your changes. -->



### 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. -->

Co-authored-by: Yulong Wang <[email protected]>
  • Loading branch information
axinging and fs-eire authored Aug 29, 2024
1 parent be76e1e commit 0167338
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion onnxruntime/core/optimizer/conv_activation_fusion.cc
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ void RegisterConvActivationFusionRules(SelectorActionRegistry& registry) {
const std::string msDomainConv = SelectorActionRegistry::OpVersionsMapKey("NhwcConv", kMSDomain);
auto selector = std::make_unique<selectors::ConvActivationSelector>();

registry.RegisterSelectorAndAction(name, {{"Conv", {1, 11}}, {msInternalNHWCDomainConv, {11}}, {msDomainConv, {1}}},
registry.RegisterSelectorAndAction(name, {{"Conv", {1, 11}}, {msInternalNHWCDomainConv, {1, 11}}, {msDomainConv, {1}}},
std::move(selector), std::move(action));
#else
registry.RegisterAction(name, std::move(action));
Expand Down

0 comments on commit 0167338

Please sign in to comment.