Skip to content

Commit

Permalink
lint fixes
Browse files Browse the repository at this point in the history
Signed-off-by: maheshambule <mdambule07@gmail.com>
  • Loading branch information
maheshambule authored and mahesh-ambule committed May 1, 2020
1 parent 1ae7f0f commit e92360b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/relay/op/tensor/transform.cc
Expand Up @@ -1438,7 +1438,7 @@ Array<te::Tensor> ReverseCompute(const Attrs& attrs,
const Type& out_type) {
const ReverseAttrs *param = attrs.as<ReverseAttrs>();
CHECK(param != nullptr);
//pass empty seq_length tensor to reverse_sequence
// pass empty seq_length tensor to reverse_sequence
return { topi::reverse_sequence(inputs[0], te::Tensor(), param->axis)};
}

Expand Down
2 changes: 1 addition & 1 deletion topi/src/transform.cc
Expand Up @@ -44,7 +44,7 @@ TVM_REGISTER_GLOBAL("topi.transpose")

TVM_REGISTER_GLOBAL("topi.flip")
.set_body([](TVMArgs args, TVMRetValue *rv) {
//pass empty seq_lengths tensor to reverse_sequence
// pass empty seq_lengths tensor to reverse_sequence
*rv = reverse_sequence(args[0], Tensor(), args[1]);
});

Expand Down

0 comments on commit e92360b

Please sign in to comment.