Skip to content

Commit

Permalink
[circle2circle] Fix wrong enum (#14177)
Browse files Browse the repository at this point in the history
This will fix wrong enum for fuse_add_with_fully_connected.

ONE-DCO-1.0-Signed-off-by: Eunji Jeong <[email protected]>
  • Loading branch information
seanshpark authored Oct 8, 2024
1 parent b2a47fb commit f2bdd85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/circle2circle/src/Circle2Circle.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ int entry(int argc, char **argv)
option_str_to_enum["fuse_batchnorm_with_conv"] = Algorithms::FuseBatchNormWithConv;
option_str_to_enum["fuse_add_to_fullyconnected_bias"] = Algorithms::FuseAddToFullyConnectedBias;
option_str_to_enum["fuse_add_with_conv"] = Algorithms::FuseAddWithConv;
option_str_to_enum["fuse_add_with_fully_connected"] = Algorithms::FuseAddToFullyConnectedBias;
option_str_to_enum["fuse_add_with_fully_connected"] = Algorithms::FuseAddWithFullyConnected;
option_str_to_enum["fuse_add_with_tconv"] = Algorithms::FuseAddWithTConv;
option_str_to_enum["fuse_batchnorm_with_dwconv"] = Algorithms::FuseBatchNormWithDwConv;
option_str_to_enum["fuse_batchnorm_with_tconv"] = Algorithms::FuseBatchNormWithTConv;
Expand Down

0 comments on commit f2bdd85

Please sign in to comment.