Skip to content

Commit

Permalink
Merge pull request #415 from intel/saurabh/debug_gt_final_version_
Browse files Browse the repository at this point in the history
fix debug build
  • Loading branch information
sfatimar authored Aug 6, 2024
2 parents 50a408c + 0e5aa49 commit e5b95f3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -583,8 +583,8 @@ static void AddQDQNodeUnit(onnxruntime::Graph& dst_graph,

// Handle Qs in the NodeUnit
if (!node_unit.GetQNodes().empty()) {
for (auto i = 0 ; i < node_unit.GetQNodes().size() ; i++) {
const auto& q_node = node_unit.GetQNodes().at(0);
for (size_t i = 0 ; i < node_unit.GetQNodes().size() ; i++) {
const auto& q_node = node_unit.GetQNodes().at(i);

SkipReason reason;

Expand Down

0 comments on commit e5b95f3

Please sign in to comment.