mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 21:14:14 +08:00
[BE] fix typos in .ci/, .circleci/, .github/ (#156069)
Pull Request resolved: https://github.com/pytorch/pytorch/pull/156069 Approved by: https://github.com/Skylion007, https://github.com/malfet
This commit is contained in:
committed by
PyTorch MergeBot
parent
2e0e08588e
commit
8d7ee0f4fb
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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:
|
||||
|
@ -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
|
||||
|
@ -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"
|
||||
|
@ -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)
|
||||
|
@ -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
|
||||
)
|
||||
|
2
.github/actions/build-android/action.yml
vendored
2
.github/actions/build-android/action.yml
vendored
@ -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:
|
||||
|
@ -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 }}"
|
||||
|
2
.github/actions/linux-test/action.yml
vendored
2
.github/actions/linux-test/action.yml
vendored
@ -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
|
||||
|
@ -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"],
|
||||
|
4
.github/actions/setup-linux/action.yml
vendored
4
.github/actions/setup-linux/action.yml
vendored
@ -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
|
||||
|
2
.github/scripts/amd/patch_triton_wheel.sh
vendored
2
.github/scripts/amd/patch_triton_wheel.sh
vendored
@ -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]}
|
||||
|
2
.github/scripts/get_workflow_job_id.py
vendored
2
.github/scripts/get_workflow_job_id.py
vendored
@ -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
|
||||
|
2
.github/scripts/gitutils.py
vendored
2
.github/scripts/gitutils.py
vendored
@ -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)
|
||||
|
2
.github/scripts/pr-sanity-check.sh
vendored
2
.github/scripts/pr-sanity-check.sh
vendored
@ -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}"
|
||||
|
10
.github/scripts/test_filter_test_configs.py
vendored
10
.github/scripts/test_filter_test_configs.py
vendored
@ -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",
|
||||
},
|
||||
]
|
||||
|
||||
|
4
.github/scripts/test_trymerge.py
vendored
4
.github/scripts/test_trymerge.py
vendored
@ -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]
|
||||
|
2
.github/scripts/trymerge.py
vendored
2
.github/scripts/trymerge.py
vendored
@ -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"
|
||||
)
|
||||
|
||||
|
2
.github/workflows/_linux-test.yml
vendored
2
.github/workflows/_linux-test.yml
vendored
@ -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
|
||||
|
2
.github/workflows/_mac-test.yml
vendored
2
.github/workflows/_mac-test.yml
vendored
@ -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
|
||||
|
2
.github/workflows/_rocm-test.yml
vendored
2
.github/workflows/_rocm-test.yml
vendored
@ -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
|
||||
|
2
.github/workflows/_runner-determinator.yml
vendored
2
.github/workflows/_runner-determinator.yml
vendored
@ -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
|
||||
|
2
.github/workflows/_win-test.yml
vendored
2
.github/workflows/_win-test.yml
vendored
@ -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
|
||||
|
2
.github/workflows/_xpu-test.yml
vendored
2
.github/workflows/_xpu-test.yml
vendored
@ -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
|
||||
|
@ -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
|
||||
|
2
.github/workflows/docker-release.yml
vendored
2
.github/workflows/docker-release.yml
vendored
@ -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
|
||||
|
2
.github/workflows/inductor-unittest.yml
vendored
2
.github/workflows/inductor-unittest.yml
vendored
@ -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:
|
||||
|
2
.github/workflows/trymerge.yml
vendored
2
.github/workflows/trymerge.yml
vendored
@ -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
|
||||
|
@ -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/**',
|
||||
|
@ -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). <!-- codespell:ignore -->
|
||||
|
||||
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.
|
||||
|
||||
|
@ -1,2 +1,10 @@
|
||||
coo
|
||||
Raison
|
||||
hsa
|
||||
nd
|
||||
optins
|
||||
rebuild
|
||||
rebuilt
|
||||
reenable
|
||||
reenabled
|
||||
requestor
|
||||
te
|
||||
|
Reference in New Issue
Block a user