Skip to content

Commit 5b0f584

Browse files
committed
fix(aten::expand): Fix compiler warning for unused out ITensor
Signed-off-by: Naren Dasan <[email protected]> Signed-off-by: Naren Dasan <[email protected]>
1 parent 178eab3 commit 5b0f584

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/conversion/converters/impl/expand.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ auto expand_registrations TRTORCH_UNUSED =
281281

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

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

0 commit comments

Comments
 (0)