Skip to content

Commit

Permalink
Fix other x86 build issue
Browse files Browse the repository at this point in the history
  • Loading branch information
skottmckay committed Sep 20, 2023
1 parent ec03242 commit 4cefea2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -688,7 +688,7 @@ static void TransposeInputImpl(api::GraphRef& graph,
// Remove the Transpose node if possible
// if there's a DQ node the `consumers` list still includes it so allow for that.
// in that case UpdateDQNodeInputAndShape already updated the input of the DQ node so it's safe to remove it.
if (consumers->comprehensive && consumers->nodes.size() == (dq_node ? 1 : 0)) {
if (consumers->comprehensive && consumers->nodes.size() == size_t(dq_node ? 1 : 0)) {
graph.RemoveNode(*inp_node);
}

Expand Down

0 comments on commit 4cefea2

Please sign in to comment.