Skip to content

Commit e0ce9f3

Browse files
committed
refactor(elementwise): apply linting
Signed-off-by: Naren Dasan <[email protected]> Signed-off-by: Naren Dasan <[email protected]>
1 parent 1028f0a commit e0ce9f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/conversion/converters/impl/element_wise.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -374,8 +374,8 @@ auto element_wise_registrations TRTORCH_UNUSED =
374374
auto self = args[0].ITensorOrFreeze(ctx);
375375
auto otherScalar = args[1].unwrapToScalar().to<float>();
376376
auto other = tensor_to_const(ctx, torch::tensor({otherScalar}));
377-
auto mul = add_elementwise(
378-
ctx, nvinfer1::ElementWiseOperation::kPROD, self, other, util::node_info(n));
377+
auto mul =
378+
add_elementwise(ctx, nvinfer1::ElementWiseOperation::kPROD, self, other, util::node_info(n));
379379
TRTORCH_CHECK(mul, "Unable to create mul layer from node: " << *n);
380380

381381
mul->setName(util::node_info(n).c_str());

0 commit comments

Comments
 (0)