Skip to content
This repository was archived by the owner on Nov 17, 2023. It is now read-only.

Commit 61fd361

Browse files
committed
Fix lint error
1 parent 05cc7ea commit 61fd361

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/operator/nn/upsampling.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,8 +151,8 @@ NNVM_REGISTER_OP(UpSampling)
151151
.set_attr<FCompute>("FCompute<cpu>", UpSamplingCompute<cpu>)
152152
.set_attr<nnvm::FGradient>("FGradient", UpSamplingGrad{"_backward_UpSampling"})
153153
.set_attr<std::string>("key_var_num_args", "num_args")
154-
.add_argument("data", "NDArray-or-Symbol[]",
155-
"Array of tensors to upsample. For bilinear upsampling, there should be 2 inputs - 1 data and 1 weight.")
154+
.add_argument("data", "NDArray-or-Symbol[]", "Array of tensors to upsample. "
155+
"For bilinear upsampling, there should be 2 inputs - 1 data and 1 weight.")
156156
.add_arguments(UpSamplingParam::__FIELDS__())
157157
.set_attr<nnvm::FSetInputVarAttrOnCompose>("FSetInputVarAttrOnCompose",
158158
[](const nnvm::NodeAttrs& attrs, nnvm::NodePtr var, const int index) {

0 commit comments

Comments
 (0)