-
Notifications
You must be signed in to change notification settings - Fork 24.7k
Remove test_out, test_variant_consistency_eager skips for addmv
; fixed before
#61579
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
Conversation
💊 CI failures summary and remediationsAs of commit dd0c1d4 (more details on the Dr. CI page and at hud.pytorch.org/pr/61579): 💚 💚 Looks good so far! There are no failures yet. 💚 💚 Preview docs built from this PR This comment was automatically generated by Dr. CI (expand for details).Follow this link to opt-out of these comments for your Pull Requests.Please report bugs/suggestions to the (internal) Dr. CI Users group. |
addmv
; fixed beforeaddmv
; fixed before
broadcasts_input=broadcasts_input)) | ||
return tuple(sample_inputs) | ||
|
||
def generator(): |
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.
Nice refactor
@@ -4921,13 +4915,6 @@ def gradcheck_wrapper_triangular_input(op, input, *args, upper=False, **kwargs): | |||
dtypesIfROCM=floating_types_and(torch.half), | |||
supports_inplace_autograd=False, | |||
supports_forward_ad=True, | |||
skips=( |
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.
Always awesome to see skips removed
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.
Great and necessary cleanup. Thanks @krshrimali!
@mruberry has imported this pull request. If you are a Facebook employee, you can view this diff on Phabricator. |
This PR:
test_out
skip: it's not needed anymore after it was fixed inaddmv
: port to structured kernels, improve error checks #55746. This should also close addmv_() allows resizing the tensor it operates on and produces wrong results #55589.test_variant_consistency_eager
skip, it was added by mistake in [testing] addbroadcasts_input
and verifies the behaviour for inplace_variant. #55771.sample_inputs_addmv
function, the updated function should now be cleaner and easy to read.cc: @mruberry