diff --git a/.ci/docker/manywheel/Dockerfile_2_28 b/.ci/docker/manywheel/Dockerfile_2_28 index 374e3fcd08e1..b150423e9954 100644 --- a/.ci/docker/manywheel/Dockerfile_2_28 +++ b/.ci/docker/manywheel/Dockerfile_2_28 @@ -26,7 +26,7 @@ ADD ./common/install_openssl.sh install_openssl.sh RUN bash ./install_openssl.sh && rm install_openssl.sh -# remove unncessary python versions +# remove unnecessary python versions RUN rm -rf /opt/python/cp26-cp26m /opt/_internal/cpython-2.6.9-ucs2 RUN rm -rf /opt/python/cp26-cp26mu /opt/_internal/cpython-2.6.9-ucs4 RUN rm -rf /opt/python/cp33-cp33m /opt/_internal/cpython-3.3.6 diff --git a/.ci/docker/manywheel/Dockerfile_2_28_aarch64 b/.ci/docker/manywheel/Dockerfile_2_28_aarch64 index 19f2c06298ae..da7ab4d3fd15 100644 --- a/.ci/docker/manywheel/Dockerfile_2_28_aarch64 +++ b/.ci/docker/manywheel/Dockerfile_2_28_aarch64 @@ -2,7 +2,7 @@ FROM quay.io/pypa/manylinux_2_28_aarch64 as base ARG GCCTOOLSET_VERSION=13 -# Language variabes +# Language variables ENV LC_ALL=en_US.UTF-8 ENV LANG=en_US.UTF-8 ENV LANGUAGE=en_US.UTF-8 @@ -64,7 +64,7 @@ RUN bash ./install_openblas.sh && rm install_openblas.sh FROM base as final -# remove unncessary python versions +# remove unnecessary python versions RUN rm -rf /opt/python/cp26-cp26m /opt/_internal/cpython-2.6.9-ucs2 RUN rm -rf /opt/python/cp26-cp26mu /opt/_internal/cpython-2.6.9-ucs4 RUN rm -rf /opt/python/cp33-cp33m /opt/_internal/cpython-3.3.6 diff --git a/.ci/docker/manywheel/Dockerfile_cuda_aarch64 b/.ci/docker/manywheel/Dockerfile_cuda_aarch64 index 1e3ebc128c2d..369706055737 100644 --- a/.ci/docker/manywheel/Dockerfile_cuda_aarch64 +++ b/.ci/docker/manywheel/Dockerfile_cuda_aarch64 @@ -60,7 +60,7 @@ RUN bash ./install_openssl.sh && rm install_openssl.sh ENV SSL_CERT_FILE=/opt/_internal/certs.pem FROM openssl as final -# remove unncessary python versions +# remove unnecessary python versions RUN rm -rf /opt/python/cp26-cp26m /opt/_internal/cpython-2.6.9-ucs2 RUN rm -rf /opt/python/cp26-cp26mu /opt/_internal/cpython-2.6.9-ucs4 RUN rm -rf /opt/python/cp33-cp33m /opt/_internal/cpython-3.3.6 diff --git a/.ci/manywheel/build_rocm.sh b/.ci/manywheel/build_rocm.sh index 87db6e085b08..690600efdb37 100755 --- a/.ci/manywheel/build_rocm.sh +++ b/.ci/manywheel/build_rocm.sh @@ -187,7 +187,7 @@ do OS_SO_FILES[${#OS_SO_FILES[@]}]=$file_name # Append lib to array done -ARCH=$(echo $PYTORCH_ROCM_ARCH | sed 's/;/|/g') # Replace ; seperated arch list to bar for grep +ARCH=$(echo $PYTORCH_ROCM_ARCH | sed 's/;/|/g') # Replace ; separated arch list to bar for grep # rocBLAS library files ROCBLAS_LIB_SRC=$ROCM_HOME/lib/rocblas/library diff --git a/.ci/pytorch/common.sh b/.ci/pytorch/common.sh index b81d0e464203..1dc0615a99dd 100644 --- a/.ci/pytorch/common.sh +++ b/.ci/pytorch/common.sh @@ -15,6 +15,6 @@ if [[ "${BUILD_ENVIRONMENT}" == *rocm* ]]; then export PYTORCH_TEST_WITH_ROCM=1 fi -# TODO: Renable libtorch testing for MacOS, see https://github.com/pytorch/pytorch/issues/62598 +# TODO: Reenable libtorch testing for MacOS, see https://github.com/pytorch/pytorch/issues/62598 # shellcheck disable=SC2034 BUILD_TEST_LIBTORCH=0 diff --git a/.ci/pytorch/smoke_test/check_binary_symbols.py b/.ci/pytorch/smoke_test/check_binary_symbols.py index b5c3bbab3581..3e88ffe4ffd7 100755 --- a/.ci/pytorch/smoke_test/check_binary_symbols.py +++ b/.ci/pytorch/smoke_test/check_binary_symbols.py @@ -93,7 +93,7 @@ def check_lib_symbols_for_abi_correctness(lib: str) -> None: f"Found pre-cxx11 symbols, but there shouldn't be any, see: {pre_cxx11_symbols[:100]}" ) if num_cxx11_symbols < 100: - raise RuntimeError("Didn't find enought cxx11 symbols") + raise RuntimeError("Didn't find enough cxx11 symbols") def main() -> None: diff --git a/.ci/pytorch/smoke_test/smoke_test.py b/.ci/pytorch/smoke_test/smoke_test.py index 24d1d64dd205..a5f9100266d2 100644 --- a/.ci/pytorch/smoke_test/smoke_test.py +++ b/.ci/pytorch/smoke_test/smoke_test.py @@ -276,7 +276,7 @@ def smoke_test_cuda( torch_nccl_version = ".".join(str(v) for v in torch.cuda.nccl.version()) print(f"Torch nccl; version: {torch_nccl_version}") - # Pypi dependencies are installed on linux ony and nccl is availbale only on Linux. + # Pypi dependencies are installed on linux only and nccl is available only on Linux. if pypi_pkg_check == "enabled" and sys.platform in ["linux", "linux2"]: compare_pypi_to_torch_versions( "cudnn", find_pypi_package_version("nvidia-cudnn"), torch_cudnn_version diff --git a/.ci/pytorch/win-build.sh b/.ci/pytorch/win-build.sh index 7966e56695c2..d08fa87a5a6f 100755 --- a/.ci/pytorch/win-build.sh +++ b/.ci/pytorch/win-build.sh @@ -31,7 +31,7 @@ PYLONG_API_CHECK=$? if [[ $PYLONG_API_CHECK == 0 ]]; then echo "Usage of PyLong_{From,As}{Unsigned}Long API may lead to overflow errors on Windows" echo "because \`sizeof(long) == 4\` and \`sizeof(unsigned long) == 4\`." - echo "Please include \"torch/csrc/utils/python_numbers.h\" and use the correspoding APIs instead." + echo "Please include \"torch/csrc/utils/python_numbers.h\" and use the corresponding APIs instead." echo "PyLong_FromLong -> THPUtils_packInt32 / THPUtils_packInt64" echo "PyLong_AsLong -> THPUtils_unpackInt (32-bit) / THPUtils_unpackLong (64-bit)" echo "PyLong_FromUnsignedLong -> THPUtils_packUInt32 / THPUtils_packUInt64" diff --git a/.ci/pytorch/win-test-helpers/build_pytorch.bat b/.ci/pytorch/win-test-helpers/build_pytorch.bat index 2e1c07ece7f0..6a475dd89d32 100644 --- a/.ci/pytorch/win-test-helpers/build_pytorch.bat +++ b/.ci/pytorch/win-test-helpers/build_pytorch.bat @@ -10,7 +10,7 @@ set PATH=C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocol :: able to see what our cl.exe commands are (since you can actually :: just copy-paste them into a local Windows setup to just rebuild a :: single file.) -:: log sizes are too long, but leaving this here incase someone wants to use it locally +:: log sizes are too long, but leaving this here in case someone wants to use it locally :: set CMAKE_VERBOSE_MAKEFILE=1 diff --git a/.ci/pytorch/win-test-helpers/run_python_nn_smoketests.py b/.ci/pytorch/win-test-helpers/run_python_nn_smoketests.py index 6df547d4a3eb..6b19c7921850 100755 --- a/.ci/pytorch/win-test-helpers/run_python_nn_smoketests.py +++ b/.ci/pytorch/win-test-helpers/run_python_nn_smoketests.py @@ -52,7 +52,7 @@ if __name__ == "__main__": if os.path.exists(debugger): command_args = [debugger, "-o", "-c", "~*g; q"] + command_args command_string = " ".join(command_args) - print("Reruning with traceback enabled") + print("Rerunning with traceback enabled") print("Command:", command_string) subprocess.run(command_args, check=False) sys.exit(e.returncode) diff --git a/.ci/pytorch/windows/internal/check_deps.bat b/.ci/pytorch/windows/internal/check_deps.bat index 46f438615774..35e6877188d2 100644 --- a/.ci/pytorch/windows/internal/check_deps.bat +++ b/.ci/pytorch/windows/internal/check_deps.bat @@ -65,7 +65,7 @@ for /F "usebackq delims=" %%i in (`python -c "import sys; print('{0[0]}{0[1]}'.f if %PYVER% LSS 35 ( echo Warning: PyTorch for Python 2 under Windows is experimental. echo Python x64 3.5 or up is recommended to compile PyTorch on Windows - echo Maybe you can create a virual environment if you have conda installed: + echo Maybe you can create a virtual environment if you have conda installed: echo ^> conda create -n test python=3.6 pyyaml numpy echo ^> activate test ) diff --git a/.github/actions/build-android/action.yml b/.github/actions/build-android/action.yml index 1d4d71fd9d36..bccd42aa42f2 100644 --- a/.github/actions/build-android/action.yml +++ b/.github/actions/build-android/action.yml @@ -9,7 +9,7 @@ inputs: arch-for-build-env: description: | arch to pass to build environment. - This is currently different than the arch name we use elswhere, which + This is currently different than the arch name we use elsewhere, which should be fixed. required: true github-secret: diff --git a/.github/actions/filter-test-configs/action.yml b/.github/actions/filter-test-configs/action.yml index 7da1ce3fe071..c080dc64a968 100644 --- a/.github/actions/filter-test-configs/action.yml +++ b/.github/actions/filter-test-configs/action.yml @@ -157,4 +157,4 @@ runs: echo "Is keep-going label set? ${{ steps.filter.outputs.keep-going }}" echo - echo "Renabled issues? ${{ steps.filter.outputs.reenabled-issues }}" + echo "Reenabled issues? ${{ steps.filter.outputs.reenabled-issues }}" diff --git a/.github/actions/linux-test/action.yml b/.github/actions/linux-test/action.yml index 81923683e790..fb46709d9b0d 100644 --- a/.github/actions/linux-test/action.yml +++ b/.github/actions/linux-test/action.yml @@ -153,7 +153,7 @@ runs: github-token: ${{ inputs.GITHUB_TOKEN }} - name: Check for keep-going label and re-enabled test issues - # This uses the filter-test-configs action because it conviniently + # This uses the filter-test-configs action because it conveniently # checks for labels and re-enabled test issues. It does not actually do # any filtering. All filtering is done in the build step. id: keep-going diff --git a/.github/actions/reuse-old-whl/reuse_old_whl.py b/.github/actions/reuse-old-whl/reuse_old_whl.py index df5217c87d14..8806d768910f 100644 --- a/.github/actions/reuse-old-whl/reuse_old_whl.py +++ b/.github/actions/reuse-old-whl/reuse_old_whl.py @@ -132,7 +132,7 @@ def check_changed_files(sha: str) -> bool: # Return true if all the changed files are in the list of allowed files to # be changed to reuse the old whl - # Removing any files is not allowed since rysnc will not remove files + # Removing any files is not allowed since rsync will not remove files removed_files = ( subprocess.check_output( ["git", "diff", "--name-only", sha, "HEAD", "--diff-filter=D"], diff --git a/.github/actions/setup-linux/action.yml b/.github/actions/setup-linux/action.yml index da514c04a69f..5af32ac03497 100644 --- a/.github/actions/setup-linux/action.yml +++ b/.github/actions/setup-linux/action.yml @@ -33,14 +33,14 @@ runs: id: check_container_runner run: echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" - - name: Start docker if docker deamon is not running + - name: Start docker if docker daemon is not running shell: bash if: ${{ steps.check_container_runner.outputs.IN_CONTAINER_RUNNER == 'false' }} run: | if systemctl is-active --quiet docker; then echo "Docker daemon is running..."; else - echo "Starting docker deamon..." && sudo systemctl start docker; + echo "Starting docker daemon..." && sudo systemctl start docker; fi - name: Log in to ECR diff --git a/.github/scripts/amd/patch_triton_wheel.sh b/.github/scripts/amd/patch_triton_wheel.sh index 667fcb645587..366913463154 100755 --- a/.github/scripts/amd/patch_triton_wheel.sh +++ b/.github/scripts/amd/patch_triton_wheel.sh @@ -78,7 +78,7 @@ for pkg in /$WHEELHOUSE_DIR/*triton*.whl; do echo "Copied $filepath to $patchedpath" done - # Go through all required shared objects and see if any of our other objects are dependants. If so, replace so.ver wth so + # Go through all required shared objects and see if any of our other objects are dependants. If so, replace so.ver with so for ((i=0;i<${#deps[@]};++i)); do echo "replacing "${deps_soname[i]} ${patched[i]} replace_needed_sofiles $PREFIX/$ROCM_LIB ${deps_soname[i]} ${patched[i]} diff --git a/.github/scripts/get_workflow_job_id.py b/.github/scripts/get_workflow_job_id.py index cfbfe315bf69..3d87b7bad0e8 100644 --- a/.github/scripts/get_workflow_job_id.py +++ b/.github/scripts/get_workflow_job_id.py @@ -64,7 +64,7 @@ def fetch_url( ) exception_message = ( "Is github alright?", - f"Recieved status code '{err.code}' when attempting to retrieve {url}:\n", + f"Received status code '{err.code}' when attempting to retrieve {url}:\n", f"{err.reason}\n\nheaders={err.headers}", ) raise RuntimeError(exception_message) from err diff --git a/.github/scripts/gitutils.py b/.github/scripts/gitutils.py index 43ee063bd634..3a90ddb5f4c6 100644 --- a/.github/scripts/gitutils.py +++ b/.github/scripts/gitutils.py @@ -211,7 +211,7 @@ class GitRepo: self, from_branch: str, to_branch: str ) -> tuple[list[str], list[str]]: """ - Returns list of commmits that are missing in each other branch since their merge base + Returns list of commits that are missing in each other branch since their merge base Might be slow if merge base is between two branches is pretty far off """ from_ref = self.rev_parse(from_branch) diff --git a/.github/scripts/pr-sanity-check.sh b/.github/scripts/pr-sanity-check.sh index 2b33dd91f770..4c7ac868ab1b 100644 --- a/.github/scripts/pr-sanity-check.sh +++ b/.github/scripts/pr-sanity-check.sh @@ -12,7 +12,7 @@ BASE=${BASE:-HEAD~1} HEAD=${HEAD:-HEAD} ancestor=$(git merge-base "${BASE}" "${HEAD}") -echo "INFO: Checking aginst the following stats" +echo "INFO: Checking against the following stats" ( set -x git diff --stat=10000 "$ancestor" "${HEAD}" | sed '$d' > "${TMPFILE}" diff --git a/.github/scripts/test_filter_test_configs.py b/.github/scripts/test_filter_test_configs.py index d7d2a80f1d6f..26e38828b786 100755 --- a/.github/scripts/test_filter_test_configs.py +++ b/.github/scripts/test_filter_test_configs.py @@ -347,26 +347,26 @@ class TestConfigFilter(TestCase): { "job_name": "a-ci-job", "test_matrix": '{include: [{config: "default", runner: "linux"}, {config: "cfg", runner: "macos"}]}', - "descripion": "Replicate each periodic mode in a different config", + "description": "Replicate each periodic mode in a different config", }, { "job_name": "a-ci-cuda11.8-job", "test_matrix": '{include: [{config: "default", runner: "linux"}, {config: "cfg", runner: "macos"}]}', - "descripion": "Replicate each periodic mode in a different config for a CUDA job", + "description": "Replicate each periodic mode in a different config for a CUDA job", }, { "job_name": "a-ci-rocm-job", "test_matrix": '{include: [{config: "default", runner: "linux"}, {config: "cfg", runner: "macos"}]}', - "descripion": "Replicate each periodic mode in a different config for a ROCm job", + "description": "Replicate each periodic mode in a different config for a ROCm job", }, { "job_name": "", "test_matrix": '{include: [{config: "default", runner: "linux"}, {config: "cfg", runner: "macos"}]}', - "descripion": "Empty job name", + "description": "Empty job name", }, { "test_matrix": '{include: [{config: "default", runner: "linux"}, {config: "cfg", runner: "macos"}]}', - "descripion": "Missing job name", + "description": "Missing job name", }, ] diff --git a/.github/scripts/test_trymerge.py b/.github/scripts/test_trymerge.py index 89ea89a97895..e4a8cb2bc8df 100755 --- a/.github/scripts/test_trymerge.py +++ b/.github/scripts/test_trymerge.py @@ -265,7 +265,7 @@ class DummyGitRepo(GitRepo): return ["FakeCommitSha"] def commit_message(self, ref: str) -> str: - return "super awsome commit message" + return "super awesome commit message" @mock.patch("trymerge.gh_graphql", side_effect=mocked_gh_graphql) @@ -433,7 +433,7 @@ class TestTryMerge(TestCase): ) def test_cancelled_gets_ignored(self, *args: Any) -> None: - """Tests that cancelled workflow does not override existing successfull status""" + """Tests that cancelled workflow does not override existing successful status""" pr = GitHubPR("pytorch", "pytorch", 110367) conclusions = pr.get_checkrun_conclusions() lint_checks = [name for name in conclusions.keys() if "Lint" in name] diff --git a/.github/scripts/trymerge.py b/.github/scripts/trymerge.py index 281c3c4770bb..1b6b96cff7dd 100755 --- a/.github/scripts/trymerge.py +++ b/.github/scripts/trymerge.py @@ -634,7 +634,7 @@ def _revlist_to_prs( raise RuntimeError( f"Found an unexpected number of PRs mentioned in commit {rev}: " f"{len(all_matches)}. This is probably because you are using an " - "old verion of ghstack. Please update ghstack and resubmit " + "old version of ghstack. Please update ghstack and resubmit " "your PRs" ) diff --git a/.github/workflows/_linux-test.yml b/.github/workflows/_linux-test.yml index 0e4459907f1d..19d019ca007d 100644 --- a/.github/workflows/_linux-test.yml +++ b/.github/workflows/_linux-test.yml @@ -207,7 +207,7 @@ jobs: run: .github/scripts/parse_ref.py - name: Check for keep-going label and re-enabled test issues - # This uses the filter-test-configs action because it conviniently + # This uses the filter-test-configs action because it conveniently # checks for labels and re-enabled test issues. It does not actually do # any filtering. All filtering is done in the build step. id: keep-going diff --git a/.github/workflows/_mac-test.yml b/.github/workflows/_mac-test.yml index 265c3a629f45..6748c002db41 100644 --- a/.github/workflows/_mac-test.yml +++ b/.github/workflows/_mac-test.yml @@ -153,7 +153,7 @@ jobs: run: .github/scripts/parse_ref.py - name: Check for keep-going label and re-enabled test issues - # This uses the filter-test-configs action because it conviniently + # This uses the filter-test-configs action because it conveniently # checks for labels and re-enabled test issues. It does not actually do # any filtering. All filtering is done in the build step. id: keep-going diff --git a/.github/workflows/_rocm-test.yml b/.github/workflows/_rocm-test.yml index be83312455e2..006ab43da29d 100644 --- a/.github/workflows/_rocm-test.yml +++ b/.github/workflows/_rocm-test.yml @@ -150,7 +150,7 @@ jobs: run: .github/scripts/parse_ref.py - name: Check for keep-going label and re-enabled test issues - # This uses the filter-test-configs action because it conviniently + # This uses the filter-test-configs action because it conveniently # checks for labels and re-enabled test issues. It does not actually do # any filtering. All filtering is done in the build step. id: keep-going diff --git a/.github/workflows/_runner-determinator.yml b/.github/workflows/_runner-determinator.yml index f3ae11ff27c5..0d674f044ec4 100644 --- a/.github/workflows/_runner-determinator.yml +++ b/.github/workflows/_runner-determinator.yml @@ -7,7 +7,7 @@ on: required: false type: string description: | - List of experiments for this workfow. If not defined, all default experiments are included. + List of experiments for this workflow. If not defined, all default experiments are included. opt_out_experiments: required: false type: string diff --git a/.github/workflows/_win-test.yml b/.github/workflows/_win-test.yml index af455687f1f4..36b4e5cd753f 100644 --- a/.github/workflows/_win-test.yml +++ b/.github/workflows/_win-test.yml @@ -158,7 +158,7 @@ jobs: uses: ./.github/actions/download-td-artifacts - name: Check for keep-going label and re-enabled test issues - # This uses the filter-test-configs action because it conviniently + # This uses the filter-test-configs action because it conveniently # checks for labels and re-enabled test issues. It does not actually do # any filtering. All filtering is done in the build step. id: keep-going diff --git a/.github/workflows/_xpu-test.yml b/.github/workflows/_xpu-test.yml index a05519b543f4..0caa7f25613a 100644 --- a/.github/workflows/_xpu-test.yml +++ b/.github/workflows/_xpu-test.yml @@ -147,7 +147,7 @@ jobs: run: .github/scripts/parse_ref.py - name: Check for keep-going label and re-enabled test issues - # This uses the filter-test-configs action because it conviniently + # This uses the filter-test-configs action because it conveniently # checks for labels and re-enabled test issues. It does not actually do # any filtering. All filtering is done in the build step. id: keep-going diff --git a/.github/workflows/build-manywheel-images-s390x.yml b/.github/workflows/build-manywheel-images-s390x.yml index 32ba48fad283..0d7d4aafc3c8 100644 --- a/.github/workflows/build-manywheel-images-s390x.yml +++ b/.github/workflows/build-manywheel-images-s390x.yml @@ -53,7 +53,7 @@ jobs: docker tag "${CREATED_FULL_DOCKER_IMAGE_NAME}" "${DOCKER_IMAGE_NAME_PREFIX}-${GIT_COMMIT_SHA}" docker tag "${CREATED_FULL_DOCKER_IMAGE_NAME}" "${DOCKER_IMAGE_NAME_PREFIX}-${CI_FOLDER_SHA}" - # Prety sure Github will mask tokens and I'm not sure if it will even be + # Pretty sure Github will mask tokens and I'm not sure if it will even be # printed due to pipe, but just in case set +x if [[ "${WITH_PUSH:-false}" == "true" ]]; then diff --git a/.github/workflows/docker-release.yml b/.github/workflows/docker-release.yml index 3555cc3cffa9..25dca2b73a02 100644 --- a/.github/workflows/docker-release.yml +++ b/.github/workflows/docker-release.yml @@ -156,7 +156,7 @@ jobs: docker push ghcr.io/pytorch/pytorch-nightly:"${PYTORCH_NIGHTLY_COMMIT}${CUDA_SUFFIX}" - # Please note, here we ned to pin specific verison of CUDA as with latest label + # Please note, here we need to pin specific version of CUDA as with latest label if [[ ${CUDA_VERSION_SHORT} == "${STABLE_CUDA_VERSION}" ]]; then docker tag ghcr.io/pytorch/pytorch-nightly:"${PYTORCH_NIGHTLY_COMMIT}${CUDA_SUFFIX}" \ ghcr.io/pytorch/pytorch-nightly:latest diff --git a/.github/workflows/inductor-unittest.yml b/.github/workflows/inductor-unittest.yml index 4edfeca01776..cda0cdd42896 100644 --- a/.github/workflows/inductor-unittest.yml +++ b/.github/workflows/inductor-unittest.yml @@ -1,6 +1,6 @@ # Workflow: Inductor Unit Test # 1. runs unit tests for inductor. -# 2. perfoms daily memory leak checks and reruns of disabled tests, scheduled at `29 8 * * *`. +# 2. performs daily memory leak checks and reruns of disabled tests, scheduled at `29 8 * * *`. name: inductor-unittest on: diff --git a/.github/workflows/trymerge.yml b/.github/workflows/trymerge.yml index 03e5611226d8..19e169bd973b 100644 --- a/.github/workflows/trymerge.yml +++ b/.github/workflows/trymerge.yml @@ -102,7 +102,7 @@ jobs: s3-prefix: merges/${{ github.repository }}/${{ github.event.client_payload.pr_num }}/${{ github.event.client_payload.comment_id }}/${{ github.run_id }} path: merge_record.json -# We want newer merge commands to supercede old ones +# We want newer merge commands to supersede old ones concurrency: group: try-merge-${{ github.event.client_payload.pr_num }} cancel-in-progress: true diff --git a/.lintrunner.toml b/.lintrunner.toml index a4164e4d43b3..a251be2bd48f 100644 --- a/.lintrunner.toml +++ b/.lintrunner.toml @@ -1158,9 +1158,6 @@ exclude_patterns = [ 'torch/_inductor/autoheuristic/artifacts/**', # These files are all grandfathered in, feel free to remove from this list # as necessary - '.ci/**', - '.circleci/**', - '.github/**', 'aten/**', 'benchmarks/**', 'c10/**', diff --git a/README.md b/README.md index 4335b74e40aa..d5c9d019c518 100644 --- a/README.md +++ b/README.md @@ -557,7 +557,7 @@ To learn more about making a contribution to Pytorch, please see our [Contributi PyTorch is a community-driven project with several skillful engineers and researchers contributing to it. PyTorch is currently maintained by [Soumith Chintala](http://soumith.ch), [Gregory Chanan](https://github.com/gchanan), [Dmytro Dzhulgakov](https://github.com/dzhulgakov), [Edward Yang](https://github.com/ezyang), and [Nikita Shulga](https://github.com/malfet) with major contributions coming from hundreds of talented individuals in various forms and means. -A non-exhaustive but growing list needs to mention: [Trevor Killeen](https://github.com/killeent), [Sasank Chilamkurthy](https://github.com/chsasank), [Sergey Zagoruyko](https://github.com/szagoruyko), [Adam Lerer](https://github.com/adamlerer), [Francisco Massa](https://github.com/fmassa), [Alykhan Tejani](https://github.com/alykhantejani), [Luca Antiga](https://github.com/lantiga), [Alban Desmaison](https://github.com/albanD), [Andreas Koepf](https://github.com/andreaskoepf), [James Bradbury](https://github.com/jekbradbury), [Zeming Lin](https://github.com/ebetica), [Yuandong Tian](https://github.com/yuandong-tian), [Guillaume Lample](https://github.com/glample), [Marat Dukhan](https://github.com/Maratyszcza), [Natalia Gimelshein](https://github.com/ngimel), [Christian Sarofeen](https://github.com/csarofeen), [Martin Raison](https://github.com/martinraison), [Edward Yang](https://github.com/ezyang), [Zachary Devito](https://github.com/zdevito). +A non-exhaustive but growing list needs to mention: [Trevor Killeen](https://github.com/killeent), [Sasank Chilamkurthy](https://github.com/chsasank), [Sergey Zagoruyko](https://github.com/szagoruyko), [Adam Lerer](https://github.com/adamlerer), [Francisco Massa](https://github.com/fmassa), [Alykhan Tejani](https://github.com/alykhantejani), [Luca Antiga](https://github.com/lantiga), [Alban Desmaison](https://github.com/albanD), [Andreas Koepf](https://github.com/andreaskoepf), [James Bradbury](https://github.com/jekbradbury), [Zeming Lin](https://github.com/ebetica), [Yuandong Tian](https://github.com/yuandong-tian), [Guillaume Lample](https://github.com/glample), [Marat Dukhan](https://github.com/Maratyszcza), [Natalia Gimelshein](https://github.com/ngimel), [Christian Sarofeen](https://github.com/csarofeen), [Martin Raison](https://github.com/martinraison), [Edward Yang](https://github.com/ezyang), [Zachary Devito](https://github.com/zdevito). Note: This project is unrelated to [hughperkins/pytorch](https://github.com/hughperkins/pytorch) with the same name. Hugh is a valuable contributor to the Torch community and has helped with many things Torch and PyTorch. diff --git a/tools/linter/dictionary.txt b/tools/linter/dictionary.txt index 4e4295c27412..336a90dccb20 100644 --- a/tools/linter/dictionary.txt +++ b/tools/linter/dictionary.txt @@ -1,2 +1,10 @@ coo -Raison +hsa +nd +optins +rebuild +rebuilt +reenable +reenabled +requestor +te