Skip to content

Commit 911ab5b

Browse files
committed
lint
1 parent df24079 commit 911ab5b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/conversion/converters/impl/constant_pad.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ auto constant_pad_registrations TORCHTRT_UNUSED = RegisterNodeConversionPatterns
108108
// fill the right_gather_out with value
109109
auto fill_layer = ctx->net->addFill(nvinfer1::Dims{1, {1}}, nvinfer1::FillOperation::kLINSPACE);
110110
auto shape_gather_out = ctx->net->addShape(*right_gather_out)->getOutput(0);
111-
fill_layer->setInput(0, *shape_gather_out);
111+
fill_layer->setInput(0, *shape_gather_out);
112112
fill_layer->setInput(1, *valueTensor);
113113
at::Tensor delta_tensor = torch::zeros(inRank, util::TRTDataTypeToScalarType(in->getType()));
114114
auto deltaTensor = tensor_to_const(ctx, delta_tensor);

0 commit comments

Comments
 (0)