Skip to content

Commit

Permalink
Update fc_fuser.cc
Browse files Browse the repository at this point in the history
  • Loading branch information
chenjiaoAngel authored Mar 23, 2022
1 parent 366b347 commit 4b73380
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lite/core/optimizer/mir/fusion/fc_fuser.cc
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ void FcFuser::BuildPattern() {
auto input_attr_teller = [](const Node* node) -> bool {
auto op_desc = *const_cast<Node*>(node)->stmt()->op_info();
bool trans_x = op_desc.GetAttr<bool>("trans_x");
bool trans_y = op_desc.GetAttr<bool>("trans_y") return trans_x == false &&
trans_y == false;
bool trans_y = op_desc.GetAttr<bool>("trans_y");
return trans_x == false && rans_y == false;
};

// create nodes.
Expand Down

0 comments on commit 4b73380

Please sign in to comment.