Skip to content

Commit 0f48708

Browse files
peri044narendasan
authored andcommitted
Fix unused variable out warning
Signed-off-by: Dheeraj Peri <[email protected]>
1 parent 2b50334 commit 0f48708

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/conversion/converters/impl/element_wise.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ auto element_wise_registrations TRTORCH_UNUSED =
176176
}
177177

178178
auto out = ctx->AssociateValueAndTensor(n->outputs()[0], clamp_layer_out);
179-
LOG_DEBUG("Clamp layer output tensor shape: " << clamp_layer_out->getDimensions());
179+
LOG_DEBUG("Clamp layer output tensor shape: " << out->getDimensions());
180180
return true;
181181
}})
182182
.pattern({"aten::sub.Tensor(Tensor self, Tensor other, Scalar alpha=1) -> "

0 commit comments

Comments
 (0)