Skip to content

Commit

Permalink
fix(aten::expand): Fix compiler warning for unused out ITensor
Browse files Browse the repository at this point in the history
Signed-off-by: Naren Dasan <naren@narendasan.com>
Signed-off-by: Naren Dasan <narens@nvidia.com>
  • Loading branch information
narendasan committed Feb 23, 2021
1 parent 178eab3 commit 5b0f584
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/conversion/converters/impl/expand.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ auto expand_registrations TRTORCH_UNUSED =

auto out = ctx->AssociateValueAndTensor(n->outputs()[0], in);

LOG_DEBUG("Repeat layer output tensor shape: " << in->getDimensions());
LOG_DEBUG("Repeat layer output tensor shape: " << out->getDimensions());
return true;
}});

Expand Down

0 comments on commit 5b0f584

Please sign in to comment.