b2eb0e8c6a
docker: Use miniforge, install from pip ( #134274 )
...
Switch installation of the pytorch package to be installed from our download.pytorch.org sources which are better maintained.
As well, switching over the miniconda installation to a miniforge installation in order to ensure backwards compat for users expecting to have the conda package manager installed.
Pull Request resolved: https://github.com/pytorch/pytorch/pull/134274
Approved by: https://github.com/malfet , https://github.com/atalman
Co-authored-by: atalman <atalman@fb.com >
2024-08-22 23:20:22 +00:00
30d7e7a1cd
[XPU] Fix patch for old llvm package error for triton xpu ( #134204 )
...
Fixes #134199
The PR #133694 does a workaround to replace the str `"https://tritonlang.blob.core.windows.net/llvm-builds/ "` with `"https://oaitriton.blob.core.windows.net/public/llvm-builds/ "` in `triton/python/setup.py`. However, in [newer version of Triton](06e6799f4e
), it has already been changed to `"https://oaitriton.blob.core ....` and don't need to be replaced. But formerly, this will throw a runtime error.
This PR makes the `check_and_replace` logic won't fail in such a scenario. Both the old link and the newer link could work.
Also note that the `.ci/docker/common/install_triton.sh` does not need the fix, because its `sed` command won't be in effect if there is no such pattern.
Pull Request resolved: https://github.com/pytorch/pytorch/pull/134204
Approved by: https://github.com/chuanqi129 , https://github.com/EikanWang , https://github.com/atalman
2024-08-22 23:18:44 +00:00
5633773188
Convert various jobs to be Linux Foundation fleet compatible ( #134128 )
...
Migrates a batch of workflows over to LF
Pull Request resolved: https://github.com/pytorch/pytorch/pull/134128
Approved by: https://github.com/zxiiro , https://github.com/jeanschmidt
2024-08-22 19:23:07 +00:00
8f7d66f0c3
Enable dynamic rollout for Linux binary workflows ( #131472 )
...
Enables dynamic migration of jobs to the LF AWS account for binary workflows.
The new runners are only given to people specified in this issue: pytorch/test-infra#5132
This closes pytorch/ci-infra#251 .
Depends-On: pytorch/pytorch#132870
Pull Request resolved: https://github.com/pytorch/pytorch/pull/131472
Approved by: https://github.com/ZainRizvi
2024-08-22 17:12:50 +00:00
b3eef3deaf
Triple number of shards for aarch64 cpu inductor tests ( #134123 )
...
Let's see if this will work.
Alas, other than linting I can only test it after it lands
Pull Request resolved: https://github.com/pytorch/pytorch/pull/134123
Approved by: https://github.com/clee2000
2024-08-21 20:52:23 +00:00
18aaceb7be
Update conda-env-iOS.txt ( #134068 )
...
Followup after https://github.com/pytorch/pytorch/pull/133814 To fix periodic build failures update `typing-extensions` to 4.11.0, as 4.10 is missing in conda
Pull Request resolved: https://github.com/pytorch/pytorch/pull/134068
Approved by: https://github.com/wdvr , https://github.com/atalman , https://github.com/Skylion007
2024-08-21 18:47:14 +00:00
32e057636c
Enable scribe environment for compile-time benchmarks if requested. ( #133891 )
...
Signed-off-by: Edward Z. Yang <ezyang@meta.com >
Pull Request resolved: https://github.com/pytorch/pytorch/pull/133891
Approved by: https://github.com/malfet
2024-08-21 18:02:54 +00:00
750d68ff70
Use amazon linux2 for Docker builds, fix build-docker-conda condition ( #134116 )
...
1. Switches failing jobs to amzon linux 2:
- CUDA, CPU, ROCM jobs are failing
3. Fix trigger condition for build-docker-conda to be same as manywheel and libtorch
Pull Request resolved: https://github.com/pytorch/pytorch/pull/134116
Approved by: https://github.com/ZainRizvi , https://github.com/nWEIdia
2024-08-21 18:01:16 +00:00
d1abd6241a
[CI][BE] Update retry action to v3.0.0 ( #119403 )
...
To reduce number of
```
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20
```
Finally can land this one as all nodes has been migrated to AmazonLinux2023
Pull Request resolved: https://github.com/pytorch/pytorch/pull/119403
Approved by: https://github.com/clee2000 , https://github.com/Skylion007
2024-08-20 23:56:37 +00:00
a36739f36a
Cherry-Picking don't resolve conflicts ( #134047 )
...
During cherry-picking we want to use default setting and fail if there is merge conflict
Here an example of invalid conflict resolution:
https://github.com/pytorch/pytorch/pull/131194
and cherry-pick
https://github.com/pytorch/pytorch/pull/133590
Pull Request resolved: https://github.com/pytorch/pytorch/pull/134047
Approved by: https://github.com/kit1980
2024-08-20 21:48:05 +00:00
c188d419db
[BE] [EZ] Allow linux-build workflows to run on the default runner type ( #133640 )
...
Replace usage of `runner` with the new `runner_prefix` input, which allows the workflows to use the default runner type (linux.2xlarge) specified by the reusable workflow.
Pull Request resolved: https://github.com/pytorch/pytorch/pull/133640
Approved by: https://github.com/clee2000 , https://github.com/jeanschmidt , https://github.com/malfet
2024-08-20 19:37:14 +00:00
333890b701
Enable CUDA 12.4.1 ( #132202 )
...
Trying to keep a record of the steps before I lose track of it.
- 1st Commit: Similar to https://github.com/pytorch/builder/pull/1720
- 2nd Commit: Update CUDA 12.4 CI CUDA versions from 12.4.0 to 12.4.1 mapping to changes in https://github.com/pytorch/pytorch/pull/125944/files
- 3rd Commit: update for aarch64 install_cuda_aarch64.sh docker step
- 4th Commit: aaa456e3e6
Related https://github.com/pytorch/pytorch/pull/121684
- Synchronization point: Meta helps uploading pypi cuda dependencies specified in .github/scripts/generate_binary_build_matrix.py
- The above pypi upload is done (thanks Andrey!), restarted jobs like https://github.com/pytorch/pytorch/actions/runs/10188203670/job/28369471321
- 77532344e3
, use temporary docker containers (generated from a previous successful container build). If merged, these containers would be rebuilt, therefore testing them now. (5th commit)
- 6th commit 5f93c625b5
: revert the 5th commit. Update, done but have to debug seemingly irrelevant failures (rocm/xpu/mps)
Pull Request resolved: https://github.com/pytorch/pytorch/pull/132202
Approved by: https://github.com/Skylion007 , https://github.com/eqy , https://github.com/atalman
2024-08-20 17:52:50 +00:00
6590f4fb0e
[CD] Enable python 3.13 for xpu nightly build ( #133670 )
...
Enable python 3.13 for XPU nightly build, it depends on https://github.com/pytorch/pytorch/pull/133454 land. Also update the xpu nightly wheel test env.
Works for https://github.com/pytorch/pytorch/issues/114850
Fixes #130543
Pull Request resolved: https://github.com/pytorch/pytorch/pull/133670
Approved by: https://github.com/atalman , https://github.com/malfet
2024-08-20 15:05:20 +00:00
3f525c9d5d
Upgrade nightly wheels to rocm6.2 - 2 of 2 (binaries) ( #133238 )
...
Depends on https://github.com/pytorch/pytorch/pull/132875
Pull Request resolved: https://github.com/pytorch/pytorch/pull/133238
Approved by: https://github.com/atalman
2024-08-19 22:35:33 +00:00
432638f521
Remove useless environment in reusable workflow ( #133659 )
...
Signed-off-by: Edward Z. Yang <ezyang@meta.com >
Pull Request resolved: https://github.com/pytorch/pytorch/pull/133659
Approved by: https://github.com/Skylion007
2024-08-19 20:44:17 +00:00
a8619c9a1d
Add nitpicker, which allows adding comments to PRs when they match a file pattern ( #133861 )
...
This message would have helped avoid https://www.internalfb.com/sevmanager/view/440895
Signed-off-by: Edward Z. Yang <ezyang@meta.com >
Pull Request resolved: https://github.com/pytorch/pytorch/pull/133861
Approved by: https://github.com/albanD , https://github.com/izaitsevfb
2024-08-19 18:29:59 +00:00
5153550e4b
[CI] Add FP32 dynamic, AMP static, AMP dynamic for AOT inductor accuracy CPU CI test ( #132836 )
...
This PR added 3 more accuracy test for AOT inductor CPU side.
1. FP32 dynamic shape accuracy test, torchbench suite
2. AMP static shape accuracy test, torchbench suite
3. AMP dynamic shape accuracy test, torchbench suite
**Test Time cost:**
| Precision | Shape Type | Suite | Time cost |
|----------- |------------ |------------ |----------- |
| FP32 | dynamic | Torchbench | 1h40m |
| AMP | Static | Torchbench | 1h38m |
| AMP | dynamic | Torchbench | 1h48m |
Pull Request resolved: https://github.com/pytorch/pytorch/pull/132836
Approved by: https://github.com/desertfire
2024-08-19 14:26:48 +00:00
ae00063570
Change default runner's AMI to Amazon 2023 AMI - Part 1 ( #133641 )
...
Upgrades the LF scale configs to change the default AMI in accordance with the Amazon 2023 rollout plan.
This PR will be merged on Monday Aug 19 in the morning, and over the next 2-3 days as new linux runners are spun up (and old ones spun down) they'll start using this new AMI
This PR will be paired with https://github.com/pytorch/test-infra/pull/5558 , which will be merged after this one
Pull Request resolved: https://github.com/pytorch/pytorch/pull/133641
Approved by: https://github.com/jeanschmidt
2024-08-19 01:32:25 +00:00
fb59440791
Use dedicated docker-build environment for manywheel, libtorch and conda Docker builds - 2 ( #133709 )
...
Follow up after https://github.com/pytorch/pytorch/pull/133699 . 2 more placed where we need to pass these env vars.
Pull Request resolved: https://github.com/pytorch/pytorch/pull/133709
Approved by: https://github.com/Skylion007 , https://github.com/seemethere
2024-08-16 19:41:11 +00:00
caaa339e0f
Use dedicated docker-build environment for manywheel, libtorch and conda Docker builds ( #133699 )
...
BE change. Apply logic simiar to: https://github.com/pytorch/pytorch/blob/main/.github/workflows/docker-builds.yml
Pull Request resolved: https://github.com/pytorch/pytorch/pull/133699
Approved by: https://github.com/seemethere
2024-08-16 18:10:43 +00:00
2cffe82dea
Fix triton build failure due to tritonlang.blob.core.windows.net not available ( #133694 )
...
This should mitigate https://github.com/triton-lang/triton/issues/4527
We should also remove this once our triton pin moves past: https://github.com/triton-lang/triton/pull/4216
Pull Request resolved: https://github.com/pytorch/pytorch/pull/133694
Approved by: https://github.com/Skylion007 , https://github.com/kit1980 , https://github.com/malfet
2024-08-16 17:34:30 +00:00
18705e371d
S390x nightly binaries for python 3.13 ( #132984 )
...
Enable building python 3.13 nightly binaries for s390x
Pull Request resolved: https://github.com/pytorch/pytorch/pull/132984
Approved by: https://github.com/malfet
2024-08-16 17:07:27 +00:00
a6aa451bde
Move python 3.8 to 3.9 for linux-binary-manywheel workflow ( #133621 )
...
Part of Deprecation of python 3.8 and moving to 3.9. Related to: https://github.com/pytorch/pytorch/issues/120718
Pull Request resolved: https://github.com/pytorch/pytorch/pull/133621
Approved by: https://github.com/Skylion007 , https://github.com/kit1980 , https://github.com/malfet
2024-08-16 13:49:26 +00:00
cdf217cda1
Disable distributed nccl tests to unblock Amazon2023 ami upgrade ( #133355 )
...
These tests keep failing on the Linux Amazon 2023 AMI. The distributed team is looking into them, but until then, disabling the tests in order to unblock the AMI upgrade
Examples of the failures:
Failure 1: https://github.com/pytorch/pytorch/actions/runs/10047579686/job/27770963175
```
FAILED [90.0880s] distributed/test_c10d_nccl.py::NCCLTraceTestDumpOnTimeout::test_timeout_dumps_timing_enabled_False - AssertionError: None mismatch: None is not -6
```
Failure 2: https://github.com/pytorch/pytorch/actions/runs/10047579686/job/27770963494
```
____ NCCLTraceTestTimeoutDumpOnStuckRanks.test_timeout_dumps_on_stuck_ranks ____
Traceback (most recent call last):
File "/var/lib/jenkins/workspace/test/distributed/test_c10d_nccl.py", line 4214, in test_timeout_dumps_on_stuck_ranks
self.assertEqual(self._wait_process(0, timeout=90), -6)
File "/opt/conda/envs/py_3.10/lib/python3.10/site-packages/torch/testing/_internal/common_utils.py", line 3721, in assertEqual
raise error_metas.pop()[0].to_error(
AssertionError: None mismatch: None is not -6
```
Pull Request resolved: https://github.com/pytorch/pytorch/pull/133355
Approved by: https://github.com/kit1980 , https://github.com/wconstab
2024-08-15 20:15:00 +00:00
99cf567714
Make SCRIBE_GRAPHQL_ACCESS_TOKEN available to test jobs running on main ( #133536 )
...
It is possible to write to Meta's internal in-memory database Scuba via the Scribe Graph API: https://www.internalfb.com/intern/wiki/Scribe/users/Knowledge_Base/Interacting_with_Scribe_categories/Graph_API/ This is currently being used by pytorch/benchmark repo to upload torchbench performance results.
I want to make this API generally available to all jobs running on CI in a semi-trusted context. To talk to Scribe, you need a secret access token. I have initially configured an environment prod-branch-main which contains `SCRIBE_GRAPHQL_ACCESS_TOKEN`, and switched a single class of jobs (linux-test) to use this environment when they are running on the main branch. Because we require approvals for running CI on untrusted contributions, we could potentially allow all jobs to run in this environment, including jobs on PRs, but I don't need this for my use case (per-PR benchmark result reporting, and miscellaneous statistics on main.)
If this works, I'll push out this environment to the rest of our test jobs.
Signed-off-by: Edward Z. Yang <ezyang@meta.com >
Pull Request resolved: https://github.com/pytorch/pytorch/pull/133536
Approved by: https://github.com/xuzhao9 , https://github.com/malfet , https://github.com/albanD
2024-08-15 19:53:17 +00:00
546c53b784
Bump max runners for linux.24xlarge to 500 ( #133569 )
...
Fixes #ISSUE_NUMBER
Pull Request resolved: https://github.com/pytorch/pytorch/pull/133569
Approved by: https://github.com/ZainRizvi
2024-08-15 18:02:46 +00:00
758a0a88a2
[BE][Easy] enable ruff
rule PIE790
: unnecessary pass
statement ( #133200 )
...
This PR removes unnecessary `pass` statement. This is semanticly safe because the bytecode for the Python code does not change.
Note that if there is a docstring in the function, a empty function does not need a `pass` statement as placeholder.
Pull Request resolved: https://github.com/pytorch/pytorch/pull/133200
Approved by: https://github.com/malfet , https://github.com/eqy , https://github.com/kit1980
2024-08-15 15:50:19 +00:00
bbddde311a
Migrate inductor jobs to runner determinator ( #133457 )
...
Updates inductor jobs to use the runner determinator script.
Depends-On: pytorch/pytorch#133352
Closes : pytorch/ci-infra#257
Pull Request resolved: https://github.com/pytorch/pytorch/pull/133457
Approved by: https://github.com/ZainRizvi
2024-08-15 12:16:39 +00:00
1120b5ab55
Revert "[CI] Change inductor-perf-test-nightly naming ( #131476 )"
...
This reverts commit 86cb24e6ebf1b85840568fbc62d22629abaf5739.
Reverted https://github.com/pytorch/pytorch/pull/131476 on behalf of https://github.com/desertfire due to manually trigged dashboard run failed ([comment](https://github.com/pytorch/pytorch/pull/131476#issuecomment-2290224084 ))
2024-08-15 01:18:06 +00:00
d8c494910b
[EZ] Enable explicitly opting into the old Linux Amazon 2 ami - Pt 1 ( #133469 )
...
For the next phase of the Amazon 2023 migration we'll be bulk migrating the remaining jobs over to the new AMI by changing the default AMI that we use.
In preparation for that, we're adding the old Linux Amazon 2 ami as a fixed variant for runners, so that if any of the less frequently jobs breaks on Amazon 2023 AMI then they can shift to explicitly using the Amazon 2 AMI temporarily while the underlying problem is debugged and fixed.
This PR is part 1, and there's a corresponding scale config PR in test-infra: https://github.com/pytorch/test-infra/pull/5551
Pull Request resolved: https://github.com/pytorch/pytorch/pull/133469
Approved by: https://github.com/clee2000
2024-08-14 21:33:02 +00:00
86cb24e6eb
[CI] Change inductor-perf-test-nightly naming ( #131476 )
...
Summary: To make it consistent with inductor-perf-test-nightly-x86
Pull Request resolved: https://github.com/pytorch/pytorch/pull/131476
Approved by: https://github.com/huydhn , https://github.com/zou3519
2024-08-14 20:42:15 +00:00
7b269cc484
[TD] llm retrieval to not use bash -l {0} ( #133464 )
...
https://github.com/pytorch/pytorch/pull/129720 swapped the action used to setup miniconda from [conda incubator](https://github.com/conda-incubator/setup-miniconda ) to the [custom action](2aba8f107a/.github/actions/setup-miniconda/action.yml (L1)
) we have in test-infra that comes with caching.
The original miniconda [relies on bash profiles](e5293c8fd2/README.md (L746)
) to set the environment variables needed to run conda, but the test infra version relies on the user using the env vars that are set during the step.
This PR changes the job to not use `bash -l {0}` to see if not activating bash profile has an effect on the run. Unfortunately this failure happens rarely on main so I'm not sure I will be able see if this has an effect. On the plus side, changing this doesn't seem to have a negative effect on the job, so it should be a noop at worst.
Pull Request resolved: https://github.com/pytorch/pytorch/pull/133464
Approved by: https://github.com/kit1980
2024-08-14 16:53:41 +00:00
7f40ac9be2
Migrate periodic jobs to use runner determinator ( #133124 )
...
This updates the Linux & Windows jobs in periodic.yml to use the runner determinator script.
Closes : pytorch/ci-infra#261
Pull Request resolved: https://github.com/pytorch/pytorch/pull/133124
Approved by: https://github.com/ZainRizvi
2024-08-14 16:04:15 +00:00
118b2a4139
Convert inductor jobs to Linux Amazon 2023 ( #133352 )
...
A continuation of the migration started in
- https://github.com/pytorch/pytorch/pull/131250
Pull Request resolved: https://github.com/pytorch/pytorch/pull/133352
Approved by: https://github.com/zxiiro , https://github.com/seemethere
2024-08-14 15:59:33 +00:00
918367ebb0
Add new runner: G4DN Extra Large with T4 for windows binary builds ( #133229 )
...
Prep for #103104
Pull Request resolved: https://github.com/pytorch/pytorch/pull/133229
Approved by: https://github.com/ZainRizvi
2024-08-14 03:08:49 +00:00
d1d6b370ce
Upgrade nightly wheels to rocm6.2 - 1 of 2 (docker images) ( #132875 )
...
Fixes https://github.com/pytorch/pytorch/issues/132570
Pull Request resolved: https://github.com/pytorch/pytorch/pull/132875
Approved by: https://github.com/atalman
2024-08-14 02:46:48 +00:00
7666ef9d9b
[GHF] Fix co-authors attribution ( #133372 )
...
Acording to https://docs.github.com/en/pull-requests/committing-changes-to-your-project/creating-and-editing-commits/creating-a-commit-with-multiple-authors Co-authors must be mentioned at the very end of commit message and separated by 2 newlines
Test plan:
```python
from trymerge import GitHubPR
pr = GitHubPR("pytorch", "pytorch", 133189)
print(pr.gen_commit_message())
```
Fixes https://github.com/pytorch/pytorch/issues/133310
Pull Request resolved: https://github.com/pytorch/pytorch/pull/133372
Approved by: https://github.com/kit1980
2024-08-14 00:48:24 +00:00
5a1d4f7ddc
Migrate lint.yml to runner determinator ( #133320 )
...
Update the jobs in lint.yml to use the runner determinator.
Closes : pytorch/ci-infra#258
Pull Request resolved: https://github.com/pytorch/pytorch/pull/133320
Approved by: https://github.com/Skylion007
2024-08-13 22:16:32 +00:00
660436d843
Convert Periodic to use Amazon2023 runners ( #133036 )
...
Fixes #ISSUE_NUMBER
Co-authored-by: clee2000 <44682903+clee2000@users.noreply.github.com >
Pull Request resolved: https://github.com/pytorch/pytorch/pull/133036
Approved by: https://github.com/clee2000 , https://github.com/zxiiro
2024-08-13 15:59:50 +00:00
2e7d67e6af
Migrate slow.yml jobs to use runner determinator ( #133232 )
...
Update the jobs in slow.yml to use the runner determinator script.
Closes : pytorch/ci-infra#259
Pull Request resolved: https://github.com/pytorch/pytorch/pull/133232
Approved by: https://github.com/ZainRizvi
2024-08-13 15:44:55 +00:00
095c5ccf9f
[CD] Change XPU nightly build back to ABI=0 ( #132854 )
...
Works for https://github.com/pytorch/pytorch/issues/114850
Pull Request resolved: https://github.com/pytorch/pytorch/pull/132854
Approved by: https://github.com/atalman
2024-08-13 13:46:29 +00:00
592682fe22
Migrate nightly.yml to use runner determinator ( #133225 )
...
Updates the nightly.yml jobs to use the runner determinator script.
Closes : pytorch/ci-infra#260
Pull Request resolved: https://github.com/pytorch/pytorch/pull/133225
Approved by: https://github.com/ZainRizvi
2024-08-12 21:25:55 +00:00
4f0d5f6551
Pin sympy to 1.13.1 ( #133235 )
...
Sympy 1.13.2 release yesterday, and it results in test failures on windows and mac
454713fe9d/1
Hopefully these are the places it needs to get pinned
Pull Request resolved: https://github.com/pytorch/pytorch/pull/133235
Approved by: https://github.com/atalman , https://github.com/ZainRizvi
2024-08-12 20:10:09 +00:00
cdcc7dc891
update comit pin for xla ( #133120 )
...
Pull Request resolved: https://github.com/pytorch/pytorch/pull/133120
Approved by: https://github.com/janeyx99
2024-08-12 19:38:37 +00:00
1371c420c3
Migrate binary builds to use Amazon2023 runners ( #131826 )
...
A continuation of the migration started in
- https://github.com/pytorch/pytorch/pull/131250
Migrates all linux binary builds.
The failures are windows jobs which aren't touched by this PR
prev runs (for tracking):
- https://hud.pytorch.org/pytorch/pytorch/pull/131826?sha=e1ee074b1e7b17008e3f3774e4842b5e1d4c1355
- https://hud.pytorch.org/pytorch/pytorch/pull/131826?sha=50a3488ae776f86bd6bead8b048b051c49a25ec7
Pull Request resolved: https://github.com/pytorch/pytorch/pull/131826
Approved by: https://github.com/malfet
2024-08-12 17:18:55 +00:00
454713fe9d
Add inductor-cu124, inductor-rocm to upload test stats ( #133143 )
...
Forgot to add them in https://github.com/pytorch/pytorch/issues/128250 and https://github.com/pytorch/pytorch/issues/131637
Pull Request resolved: https://github.com/pytorch/pytorch/pull/133143
Approved by: https://github.com/huydhn
2024-08-12 15:51:51 +00:00
f5e704a6f2
Add instruction count benchmark to run on pull requests ( #131475 )
...
This PR only adds the execution of the benchmarks on this PR and print results, following diffs will add checking out head~1 and running it and comparing.
to access results goto test pr_time_benchmarks and inspect logs:
you should see
```
+ echo 'benchmark results on current PR: '
benchmark results on current PR:
+ cat /var/lib/jenkins/workspace/test/test-reports/pr_time_benchmarks_before.txt
update_hint_regression,instruction_count,27971461254
```
Pull Request resolved: https://github.com/pytorch/pytorch/pull/131475
Approved by: https://github.com/ezyang
2024-08-12 05:20:26 +00:00
ac95b2a2f2
Migrate slow self-hosted jobs to Amazon2023 AMI ( #131771 )
...
A continuation of the migration started in
- https://github.com/pytorch/pytorch/pull/131250
(for tracking: signal on Aug 6: https://hud.pytorch.org/pytorch/pytorch/pull/131771?sha=38bc4755567527fad5279203ddef534ac132ea94 )
Pull Request resolved: https://github.com/pytorch/pytorch/pull/131771
Approved by: https://github.com/seemethere
2024-08-08 17:33:57 +00:00
dfc5bb0099
Login to Meta's ECR when using non-meta runner ( #132870 )
...
The project depends on fetching container images from Meta's ECR repo so when run on non-meta runners we need to ensure that we also login to Meta's ECR too.
Closes pytorch/ci-infra#252 .
Pull Request resolved: https://github.com/pytorch/pytorch/pull/132870
Approved by: https://github.com/ZainRizvi
2024-08-08 16:34:46 +00:00
51ddcde110
[BE] Introduces runner variants for amzn2023 to simplify lf-scale-config.yml and lf-canary-scale-config.yml ( #132918 )
...
Depends on https://github.com/pytorch/test-infra/pull/5541 to be deployed on LF and Meta infra
Test for this changes are in this PR: https://github.com/pytorch/test-infra/pull/5542
Pull Request resolved: https://github.com/pytorch/pytorch/pull/132918
Approved by: https://github.com/zxiiro , https://github.com/ZainRizvi
2024-08-08 14:38:34 +00:00