pytorch/.github/scripts
Wei Wang 6bcb545d9c [CI][CUDA][cuSPARSELt] cusparselt 0.6.3 and cu121 related cleanups (#145793)
Make ci cusparselt installation be consistent with nightly binary
Remove cu121 related docker build jobs and inductor runs Update test failures relating to cu121

Retry of https://github.com/pytorch/pytorch/pull/145696
Pull Request resolved: https://github.com/pytorch/pytorch/pull/145793
Approved by: https://github.com/eqy, https://github.com/tinglvv
2025-01-28 21:01:58 +00:00
..
amd Upgrade ROCm wheels to manylinux2_28 - 2 of 2 (binaries) (#141423) 2024-12-04 07:00:25 +00:00
s390x-ci S390x cancelled jobs cleanup (#144149) 2025-01-09 20:45:19 +00:00
windows Build magma for windows (#139924) 2024-11-09 09:27:59 +00:00
build_triton_wheel.py [BE] Remove conda from scripts and build files Part 2 (#145015) 2025-01-17 16:26:24 +00:00
check_labels.py [ez] Fix check labels error when deleting comment (#140578) 2024-11-13 23:00:58 +00:00
cherry_pick.py PEP585: .github (#145707) 2025-01-27 21:21:01 +00:00
close_nonexistent_disable_issues.py PEP585: .github (#145707) 2025-01-27 21:21:01 +00:00
collect_ciflow_labels.py PEP585: .github (#145707) 2025-01-27 21:21:01 +00:00
comment_on_pr.py
convert_lintrunner_annotations_to_github.py
delete_old_branches.py PEP585: .github (#145707) 2025-01-27 21:21:01 +00:00
docathon-label-sync.py
drci_mocks.json.gz
ensure_actions_will_cancel.py Revert "Use absolute path path.resolve() -> path.absolute() (#129409)" 2025-01-04 14:17:20 +00:00
export_pytorch_labels.py
file_io_utils.py PEP585: .github (#145707) 2025-01-27 21:21:01 +00:00
filter_test_configs.py PEP585: .github (#145707) 2025-01-27 21:21:01 +00:00
generate_binary_build_matrix.py PEP585: .github (#145707) 2025-01-27 21:21:01 +00:00
generate_ci_workflows.py PEP585: .github (#145707) 2025-01-27 21:21:01 +00:00
generate_docker_release_matrix.py
generate_pytorch_version.py
get_aws_session_tokens.py
get_workflow_job_id.py PEP585: .github (#145707) 2025-01-27 21:21:01 +00:00
github_utils.py PEP585: .github (#145707) 2025-01-27 21:21:01 +00:00
gitutils.py PEP585: .github (#145707) 2025-01-27 21:21:01 +00:00
gql_mocks.json.gz
kill_active_ssh_sessions.ps1
label_utils.py PEP585: .github (#145707) 2025-01-27 21:21:01 +00:00
lint_native_functions.py Revert "Use absolute path path.resolve() -> path.absolute() (#129409)" 2025-01-04 14:17:20 +00:00
lintrunner.sh [EZ] Update lintrunner in CI to 0.12.7 (#143073) 2024-12-12 15:35:37 +00:00
parse_ref.py
pr-sanity-check.sh
pytest_cache.py
pytest_caching_utils.py PEP585: .github (#145707) 2025-01-27 21:21:01 +00:00
README.md
report_git_status.sh Fix timeout check workflow lint job (#142476) 2024-12-10 20:47:22 +00:00
rockset_mocks.json.gz
runner_determinator.py PEP585: .github (#145707) 2025-01-27 21:21:01 +00:00
stop_runner_service.sh
tag_docker_images_for_release.py PEP585: .github (#145707) 2025-01-27 21:21:01 +00:00
td_llm_indexer.sh
test_check_labels.py PEP585: .github (#145707) 2025-01-27 21:21:01 +00:00
test_filter_test_configs.py [CI][CUDA][cuSPARSELt] cusparselt 0.6.3 and cu121 related cleanups (#145793) 2025-01-28 21:01:58 +00:00
test_gitutils.py Revert "Use absolute path path.resolve() -> path.absolute() (#129409)" 2025-01-04 14:17:20 +00:00
test_label_utils.py
test_pytest_caching_utils.py
test_runner_determinator.py Enable opting out of experiments even when they're being rolled out (#140433) 2024-11-14 19:18:24 +00:00
test_trymerge.py [CI][CUDA][cuSPARSELt] cusparselt 0.6.3 and cu121 related cleanups (#145793) 2025-01-28 21:01:58 +00:00
test_tryrebase.py
trymerge.py PEP585: .github (#145707) 2025-01-27 21:21:01 +00:00
trymerge_explainer.py PEP585: .github (#145707) 2025-01-27 21:21:01 +00:00
tryrebase.py PEP585: .github (#145707) 2025-01-27 21:21:01 +00:00
update_runner_determinator.py
upload_aws_ossci.sh Build magma binary tarballs for various cuda (#139888) 2024-11-08 13:28:27 +00:00
wait_for_ssh_to_drain.ps1

pytorch/.github

NOTE: This README contains information for the .github directory but cannot be located there because it will overwrite the repo README.

This directory contains workflows and scripts to support our CI infrastructure that runs on GitHub Actions.

Workflows

  • Pull CI (pull.yml) is run on PRs and on main.
  • Trunk CI (trunk.yml) is run on trunk to validate incoming commits. Trunk jobs are usually more expensive to run so we do not run them on PRs unless specified.
  • Scheduled CI (periodic.yml) is a subset of trunk CI that is run every few hours on main.
  • Binary CI is run to package binaries for distribution for all platforms.

Templates

Templates written in Jinja are located in the .github/templates directory and used to generate workflow files for binary jobs found in the .github/workflows/ directory. These are also a couple of utility templates used to discern common utilities that can be used amongst different templates.

(Re)Generating workflow files

You will need jinja2 in order to regenerate the workflow files which can be installed using:

pip install -r .github/requirements/regenerate-requirements.txt

Workflows can be generated / regenerated using the following command:

.github/regenerate.sh

Adding a new generated binary workflow

New generated binary workflows can be added in the .github/scripts/generate_ci_workflows.py script. You can reference examples from that script in order to add the workflow to the stream that is relevant to what you particularly care about.

Different parameters can be used to achieve different goals, i.e. running jobs on a cron, running only on trunk, etc.

ciflow (trunk)

The label ciflow/trunk can be used to run trunk only workflows. This is especially useful if trying to re-land a PR that was reverted for failing a non-default workflow.

Infra

Currently most of our self hosted runners are hosted on AWS, for a comprehensive list of available runner types you can reference .github/scale-config.yml.

Exceptions to AWS for self hosted:

  • ROCM runners

Adding new runner types

New runner types can be added by committing changes to .github/scale-config.yml. Example: https://github.com/pytorch/pytorch/pull/70474

NOTE: New runner types can only be used once the changes to .github/scale-config.yml have made their way into the default branch

Testing pytorch/builder changes

In order to test changes to the builder scripts:

  1. Specify your builder PR's branch and repo as builder_repo and builder_branch in .github/templates/common.yml.j2.
  2. Regenerate workflow files with .github/regenerate.sh (see above).
  3. Submit fake PR to PyTorch. If changing binaries build, add an appropriate label like ciflow/binaries to trigger the builds.