mirror of
https://github.com/saymrwulf/pytorch.git
synced 2026-05-14 20:57:59 +00:00
0.12.0 Major Updates: - Add context manager to temporarily set the dictionary sorting mode - Add accessor APIs - Use `stable` tag for `pybind11` for Python 3.13 support - Fix potential segmentation fault for pickling support 0.12.1 Updates: - Fix warning regression during import when launch with strict warning filters Closes #130155 Pull Request resolved: https://github.com/pytorch/pytorch/pull/130139 Approved by: https://github.com/zou3519 ghstack dependencies: #130895 |
||
|---|---|---|
| .. | ||
| conda-env-iOS.txt | ||
| conda-env-Linux-X64.txt | ||
| conda-env-macOS-ARM64 | ||
| conda-env-macOS-X64 | ||
| pip-requirements-iOS.txt | ||
| pip-requirements-macOS.txt | ||
| README.md | ||
| regenerate-requirements.txt | ||
Cached requirements and consolidation of conda and pip installation
At the moment, the installation of conda and pip dependencies happens at different places in the CI depending at the whim of different developers, which makes it very challenging to handle issues like network flakiness or upstream dependency failures gracefully. So, this center directory is created to gradually include all the conda environment and pip requirement files that are used to setup CI jobs. Not only it gives a clear picture of all the dependencies required by different CI jobs, but it also allows them to be cached properly to improve CI reliability.
The list of support files are as follows:
- Conda:
- conda-env-iOS. This is used by iOS build and test jobs to setup the conda environment
- conda-env-macOS-ARM64. This is used by MacOS (m1, arm64) build and test jobs to setup the conda environment
- conda-env-macOS-X64. This is use by MacOS (x86-64) build and test jobs to setup the conda environment
- conda-env-Linux-X64. This is used by Linux buck build and test jobs to setup the conda environment
- Pip:
- pip-requirements-iOS.txt. This is used by iOS build and test jobs to setup the pip environment
- pip-requirements-macOS.txt. This is used by MacOS build and test jobs to setup the pip environment