Skip to content

[vision hash update] update the pinned vision hash#82560

Closed
pytorchmergebot wants to merge 1 commit intomasterfrom
update-vision-commit-hash/2773110797-56-1
Closed

[vision hash update] update the pinned vision hash#82560
pytorchmergebot wants to merge 1 commit intomasterfrom
update-vision-commit-hash/2773110797-56-1

Conversation

@pytorchmergebot
Copy link
Copy Markdown
Collaborator

This PR is auto-generated nightly by this action.
Update the pinned vision hash.

@pytorchmergebot pytorchmergebot requested a review from a team as a code owner August 1, 2022 07:42
@pytorchbot
Copy link
Copy Markdown
Collaborator

@pytorchbot merge -g

@facebook-github-bot
Copy link
Copy Markdown
Contributor

facebook-github-bot commented Aug 1, 2022

🔗 Helpful links

✅ No Failures (0 Pending)

As of commit c762c9f (more details on the Dr. CI page):

Expand to see more

💚 💚 Looks good so far! There are no failures yet. 💚 💚


This comment was automatically generated by Dr. CI (expand for details).

Please report bugs/suggestions to the (internal) Dr. CI Users group.

Click here to manually regenerate this comment.

@pytorchmergebot
Copy link
Copy Markdown
Collaborator Author

@pytorchbot successfully started a merge job. Check the current status here

@pytorchmergebot
Copy link
Copy Markdown
Collaborator Author

Merge failed due to Refusing to merge as mandatory check(s) pull failed for rule CI Pinned Hashes
Raised by https://github.com/pytorch/pytorch/actions/runs/2773116357

@pytorchbot
Copy link
Copy Markdown
Collaborator

@pytorchbot merge -g

@pytorchmergebot pytorchmergebot force-pushed the update-vision-commit-hash/2773110797-56-1 branch from 026f0aa to 5047036 Compare August 2, 2022 07:41
@pytorchmergebot
Copy link
Copy Markdown
Collaborator Author

@pytorchbot successfully started a merge job. Check the current status here

@pytorchmergebot
Copy link
Copy Markdown
Collaborator Author

Merge failed due to Refusing to merge as mandatory check(s) pull failed for rule CI Pinned Hashes
Raised by https://github.com/pytorch/pytorch/actions/runs/2780439451

@pytorchbot
Copy link
Copy Markdown
Collaborator

@pytorchbot merge -g

@pytorchmergebot pytorchmergebot force-pushed the update-vision-commit-hash/2773110797-56-1 branch from 5047036 to b57b5d6 Compare August 3, 2022 07:41
@pytorchmergebot
Copy link
Copy Markdown
Collaborator Author

@pytorchbot successfully started a merge job. Check the current status here

@pytorchmergebot
Copy link
Copy Markdown
Collaborator Author

Merge failed due to Refusing to merge as mandatory check(s) pull failed for rule CI Pinned Hashes
Raised by https://github.com/pytorch/pytorch/actions/runs/2787723303

@pytorchbot
Copy link
Copy Markdown
Collaborator

@pytorchbot merge -g

@pytorchmergebot pytorchmergebot force-pushed the update-vision-commit-hash/2773110797-56-1 branch from b57b5d6 to 83453a6 Compare August 4, 2022 07:41
@pytorchmergebot
Copy link
Copy Markdown
Collaborator Author

@pytorchbot successfully started a merge job. Check the current status here

@pytorchmergebot
Copy link
Copy Markdown
Collaborator Author

Merge failed due to Refusing to merge as mandatory check(s) pull failed for rule CI Pinned Hashes
Raised by https://github.com/pytorch/pytorch/actions/runs/2794991048

@pytorchbot
Copy link
Copy Markdown
Collaborator

@pytorchbot merge -g

@pytorchmergebot pytorchmergebot force-pushed the update-vision-commit-hash/2773110797-56-1 branch from 83453a6 to 92b9599 Compare August 5, 2022 07:41
@pytorchmergebot
Copy link
Copy Markdown
Collaborator Author

@pytorchbot successfully started a merge job. Check the current status here

@pytorchmergebot
Copy link
Copy Markdown
Collaborator Author

Merge failed due to Refusing to merge as mandatory check(s) pull failed for rule CI Pinned Hashes
Raised by https://github.com/pytorch/pytorch/actions/runs/2802065271

@pytorchbot
Copy link
Copy Markdown
Collaborator

@pytorchbot merge -g

@pytorchmergebot pytorchmergebot force-pushed the update-vision-commit-hash/2773110797-56-1 branch from 92b9599 to 7dc5986 Compare August 6, 2022 07:41
@pytorchmergebot
Copy link
Copy Markdown
Collaborator Author

@pytorchbot successfully started a merge job. Check the current status here

@pytorchmergebot
Copy link
Copy Markdown
Collaborator Author

Merge failed due to Refusing to merge as mandatory check(s) pull failed for rule CI Pinned Hashes
Raised by https://github.com/pytorch/pytorch/actions/runs/2808146243

@pytorchbot
Copy link
Copy Markdown
Collaborator

@pytorchbot merge -g

@pytorchmergebot pytorchmergebot force-pushed the update-vision-commit-hash/2773110797-56-1 branch from 7dc5986 to dc4fdd5 Compare August 7, 2022 07:40
@pytorchmergebot
Copy link
Copy Markdown
Collaborator Author

Merge failed due to Refusing to merge as mandatory check(s) pull failed for rule CI Pinned Hashes
Raised by https://github.com/pytorch/pytorch/actions/runs/2823579233

@pytorchbot
Copy link
Copy Markdown
Collaborator

@pytorchbot merge -g

@pytorchmergebot pytorchmergebot force-pushed the update-vision-commit-hash/2773110797-56-1 branch from 006e4c4 to 9244988 Compare August 10, 2022 07:42
@pytorchmergebot
Copy link
Copy Markdown
Collaborator Author

@pytorchbot successfully started a merge job. Check the current status here

@pytorchmergebot
Copy link
Copy Markdown
Collaborator Author

Merge failed due to Refusing to merge as mandatory check(s) pull failed for rule CI Pinned Hashes
Raised by https://github.com/pytorch/pytorch/actions/runs/2830910646

@datumbox datumbox mentioned this pull request Aug 10, 2022
datumbox added a commit that referenced this pull request Aug 10, 2022
Summary:
Resolves [breakages](https://github.com/pytorch/pytorch/runs/7762125339?check_suite_focus=true) observed at #82560

Context:
The current FX tests assume that every public method under `torchvision.models` is a model builder method. To get a list of those methods, they query the `__dict__` attribute of the module. Unfortunately this assumption is not true and the tests already contain some workarounds to filter some methods. A better approach would be to query TorchVision for all of its available models under a specific module. This is exactly what the new Registration API can help us do and that's what we use in this PR.

Pull Request resolved: #83187

Test Plan: buck1 test mode/dev //caffe2/test:fx

Reviewed By: ezyang

Differential Revision: D38583882

Pulled By: datumbox

fbshipit-source-id: a2b98596928f95fba7e4f34d047e0602f0a6c1f9
pytorchmergebot pushed a commit that referenced this pull request Aug 11, 2022
Resolves [breakages](https://github.com/pytorch/pytorch/runs/7762125339?check_suite_focus=true) observed at #82560

Context:
The current FX tests assume that every public method under `torchvision.models` is a model builder method. To get a list of those methods, they query the `__dict__` attribute of the module. Unfortunately this assumption is not true and the tests already contain some workarounds to filter some methods. A better approach would be to query TorchVision for all of its available models under a specific module. This is exactly what the new Registration API can help us do and that's what we use in this PR.
Pull Request resolved: #83187
Approved by: https://github.com/ezyang
facebook-github-bot pushed a commit that referenced this pull request Aug 11, 2022
Summary:
Resolves [breakages](https://github.com/pytorch/pytorch/runs/7762125339?check_suite_focus=true) observed at #82560

Context:
The current FX tests assume that every public method under `torchvision.models` is a model builder method. To get a list of those methods, they query the `__dict__` attribute of the module. Unfortunately this assumption is not true and the tests already contain some workarounds to filter some methods. A better approach would be to query TorchVision for all of its available models under a specific module. This is exactly what the new Registration API can help us do and that's what we use in this PR.

Pull Request resolved: #83187

Test Plan: buck1 test mode/dev //caffe2/test:fx

Reviewed By: ezyang

Differential Revision: D38583882

Pulled By: datumbox

fbshipit-source-id: 65ac636afc9898ca6edaddfd085db69ec40fd34d
@pytorchbot
Copy link
Copy Markdown
Collaborator

@pytorchbot merge -g

@pytorchmergebot pytorchmergebot force-pushed the update-vision-commit-hash/2773110797-56-1 branch from 9244988 to aadeda2 Compare August 11, 2022 07:41
@pytorchmergebot
Copy link
Copy Markdown
Collaborator Author

@pytorchbot successfully started a merge job. Check the current status here

@pytorchmergebot
Copy link
Copy Markdown
Collaborator Author

Merge failed due to Refusing to merge as mandatory check(s) pull failed for rule CI Pinned Hashes
Raised by https://github.com/pytorch/pytorch/actions/runs/2838184916

datumbox added a commit that referenced this pull request Aug 11, 2022
Summary:
Addresses some [breakages](https://github.com/pytorch/pytorch/runs/7782559841?check_suite_focus=true) from #82560

Pull Request resolved: #83242

Differential Revision: D38614693

Pulled By: datumbox

fbshipit-source-id: 882eea1b6c57d48d7d5b9efe7437fccf7f1e34d8
pytorchmergebot pushed a commit that referenced this pull request Aug 11, 2022
Addresses some [breakages](https://github.com/pytorch/pytorch/runs/7782559841?check_suite_focus=true) from #82560

Context: The tests are breaking because a new architecture was added in TorchVision (see pytorch/vision#6373) that requires a different input size. This PR addresses it by using the right size for the `mvit_v2_s` architecture.
Pull Request resolved: #83242
Approved by: https://github.com/ezyang
facebook-github-bot pushed a commit that referenced this pull request Aug 11, 2022
Summary:
Addresses some [breakages](https://github.com/pytorch/pytorch/runs/7782559841?check_suite_focus=true) from #82560

Pull Request resolved: #83242

Reviewed By: ezyang

Differential Revision: D38614693

Pulled By: datumbox

fbshipit-source-id: 4096b935b0bf90cc921e231c3554e144b66d7515
@pytorchbot
Copy link
Copy Markdown
Collaborator

@pytorchbot merge -g

@pytorchmergebot pytorchmergebot force-pushed the update-vision-commit-hash/2773110797-56-1 branch from aadeda2 to c762c9f Compare August 12, 2022 07:41
@pytorchmergebot
Copy link
Copy Markdown
Collaborator Author

@pytorchbot successfully started a merge job. Check the current status here.
The merge job was triggered with the green (-g) flag. This means that your change will be merged once all checks on your PR have passed (ETA: 0-4 Hours). If this is not the intended behavior, feel free to use some of the other merge options in the wiki.
Please reach out to the PyTorch DevX Team with feedback or questions!

@github-actions
Copy link
Copy Markdown
Contributor

Hey @pytorchmergebot.
You've committed this PR, but it does not have both a 'release notes: ...' and 'topics: ...' label. Please add one of each to the PR. The 'release notes: ...' label should represent the part of PyTorch that this PR changes (fx, autograd, distributed, etc) and the 'topics: ...' label should represent the kind of PR it is (not user facing, new feature, bug fix, perf improvement, etc). The list of valid labels can be found here for the 'release notes: ...' and here for the 'topics: ...'.
For changes that are 'topic: not user facing' there is no need for a release notes label.

facebook-github-bot pushed a commit that referenced this pull request Aug 12, 2022
Summary:
This PR is auto-generated nightly by [this action](https://github.com/pytorch/pytorch/blob/master/.github/workflows/_update-commit-hash.yml).
Update the pinned vision hash.

Pull Request resolved: #82560
Approved by: https://github.com/pytorchbot

Test Plan: contbuild & OSS CI, see https://hud.pytorch.org/commit/pytorch/pytorch/d5fb4e2a2769f712077cb51b34dec21ea56f6d71

Reviewed By: atalman

Differential Revision: D38658633

Pulled By: atalman

fbshipit-source-id: e61d94e3f9209a99d57928b81370815d405211b3
@github-actions github-actions bot deleted the update-vision-commit-hash/2773110797-56-1 branch February 19, 2024 01:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants