[frontend][pytorch] Add a new test case for torch aten::fill_ operator implementation#12857
Merged
masahi merged 1 commit intoapache:mainfrom Sep 22, 2022
Merged
Conversation
d34520c to
32278fd
Compare
Member
|
You need to include my change in |
32278fd to
a0636ff
Compare
Contributor
Author
|
Thanks for the comment. I have included yours changes as well to the PR. |
…ing on the fill value. Add new test case for torch aten::fill_ operator implementation.
a0636ff to
d7c7966
Compare
masahi
approved these changes
Sep 22, 2022
ghost
pushed a commit
to neo-ai/tvm
that referenced
this pull request
Nov 6, 2022
…r implementation (apache#12857) Fix aten::fill_ torch operator implementation by adding constant folding on the fill value. Add new test case for torch aten::fill_ operator implementation.
xinetzone
pushed a commit
to daobook/tvm
that referenced
this pull request
Nov 25, 2022
…r implementation (apache#12857) Fix aten::fill_ torch operator implementation by adding constant folding on the fill value. Add new test case for torch aten::fill_ operator implementation.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add a new test case for torch
aten::fill_operator implementation.This new test is testing a case of usage of a sequence of operators
aten::div()andaten::fill_()that was causing a failure during the deployment of Mask R-CNN model (torchvision 0.13.0 version of the model).Issue: #12844