-
Notifications
You must be signed in to change notification settings - Fork 3.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[TensorFlow][Frontend] Adding InversePermutation Op #8277
Conversation
tvm.testing.assert_allclose(tf_output[i], tvm_output[i], atol=1e-4, rtol=1e-5) | ||
|
||
sess.close() | ||
# @tvm.testing.parametrize_targets("llvm", "cuda") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this test commented out intentionally?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, I forgot to uncomment that line.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, I've just noticed that I forgot to uncomment the whole test_read_variable_op
.
bd796ae
to
13917bc
Compare
Hi @cailun01, there are some minor linting issues with your change. Have a look on the documentation at https://tvm.apache.org/docs/contribute/pull_request.html#submit-a-pull-request to see instructions on how to run the linter on your own machine. |
OK, Thanks! |
Computes the inverse permutation of a tensor. This Op is used by Mask R-CNN or other object detection models.
3d52b71
to
15a4564
Compare
* [TensorFlow][Frontend] Adding InversePermutation Op Computes the inverse permutation of a tensor. This Op is used by Mask R-CNN or other object detection models. * uncomment test_read_variable_op * restore several tests * fix lint error * fix python linting error * fix lint error * restore mistakenly deleted codes
* [TensorFlow][Frontend] Adding InversePermutation Op Computes the inverse permutation of a tensor. This Op is used by Mask R-CNN or other object detection models. * uncomment test_read_variable_op * restore several tests * fix lint error * fix python linting error * fix lint error * restore mistakenly deleted codes
Computes the inverse permutation of a tensor. This Op is used by Mask R-CNN
or other object detection models.
Thanks for contributing to TVM! Please refer to guideline https://tvm.apache.org/docs/contribute/ for useful information and tips. After the pull request is submitted, please request code reviews from Reviewers by @ them in the pull request thread.