Skip to content
This repository was archived by the owner on Aug 1, 2025. It is now read-only.

Commit 4f916f5

Browse files
authored
Update URLs to github.com/pytorch/torchdynamo (#199)
1 parent 37895a0 commit 4f916f5

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ authors:
55
given-names: Jason
66
title: "TorchDynamo"
77
date-released: 2022-01-01
8-
url: https://github.com/facebookresearch/torchdynamot
8+
url: https://github.com/pytorch/torchdynamo

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ conda activate torchdynamo
345345
# for CUDA version, replace `cpuonly` with `cudatoolkit=11.3`
346346
conda install pytorch torchvision torchaudio torchtext cpuonly -c pytorch-nightly
347347
348-
git clone [email protected]:facebookresearch/torchdynamo.git
348+
git clone [email protected]:pytorch/torchdynamo.git
349349
cd torchdynamo
350350
pip install -r requirements.txt
351351
@@ -381,10 +381,10 @@ make lint-deps
381381

382382
## Tests
383383

384-
[![Test Python 3.7](https://github.com/facebookresearch/torchdynamo/actions/workflows/test-py37.yml/badge.svg)](https://github.com/facebookresearch/torchdynamo/actions/workflows/test-py37.yml)
385-
[![Test Python 3.8](https://github.com/facebookresearch/torchdynamo/actions/workflows/test-py38.yml/badge.svg)](https://github.com/facebookresearch/torchdynamo/actions/workflows/test-py38.yml)
386-
[![Test Python 3.9](https://github.com/facebookresearch/torchdynamo/actions/workflows/test-py39.yml/badge.svg)](https://github.com/facebookresearch/torchdynamo/actions/workflows/test-py39.yml)
387-
[![Test Python 3.10](https://github.com/facebookresearch/torchdynamo/actions/workflows/test-py310.yml/badge.svg)](https://github.com/facebookresearch/torchdynamo/actions/workflows/test-py39.yml)
384+
[![Test Python 3.7](https://github.com/pytorch/torchdynamo/actions/workflows/test-py37.yml/badge.svg)](https://github.com/pytorch/torchdynamo/actions/workflows/test-py37.yml)
385+
[![Test Python 3.8](https://github.com/pytorch/torchdynamo/actions/workflows/test-py38.yml/badge.svg)](https://github.com/pytorch/torchdynamo/actions/workflows/test-py38.yml)
386+
[![Test Python 3.9](https://github.com/pytorch/torchdynamo/actions/workflows/test-py39.yml/badge.svg)](https://github.com/pytorch/torchdynamo/actions/workflows/test-py39.yml)
387+
[![Test Python 3.10](https://github.com/pytorch/torchdynamo/actions/workflows/test-py310.yml/badge.svg)](https://github.com/pytorch/torchdynamo/actions/workflows/test-py39.yml)
388388

389389
Run tests with
390390
```shell
@@ -430,7 +430,7 @@ generate `*.csv` files. See `./torchbench.py --help` for more options.
430430

431431
## Linting and Automatic Code Formatting
432432

433-
[![Lint](https://github.com/facebookresearch/torchdynamo/actions/workflows/lint.yml/badge.svg)](https://github.com/facebookresearch/torchdynamo/actions/workflows/lint.yml)
433+
[![Lint](https://github.com/pytorch/torchdynamo/actions/workflows/lint.yml/badge.svg)](https://github.com/pytorch/torchdynamo/actions/workflows/lint.yml)
434434
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
435435
[![Imports: isort](https://img.shields.io/badge/%20imports-isort-%231674b1?style=flat&labelColor=ef8336)](https://pycqa.github.io/isort/)
436436

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
setup(
1717
name="torchdynamo",
1818
version="0.2.0",
19-
url="https://github.com/facebookresearch/torchdynamo",
19+
url="https://github.com/pytorch/torchdynamo",
2020
description="A Python-level JIT compiler designed to make unmodified PyTorch programs faster.",
2121
long_description=long_description,
2222
long_description_content_type="text/markdown",

tests/test_repros.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1030,7 +1030,7 @@ def test_reformer_sorting(self):
10301030
self.assertEqual(cnt.op_count, ifdyn(28, 14))
10311031

10321032
def test_recursive_map(self):
1033-
# https://github.com/facebookresearch/torchdynamo/issues/132
1033+
# https://github.com/pytorch/torchdynamo/issues/132
10341034
def _recursive_map(struct, batch_dim=0):
10351035
for k, v in struct.items():
10361036
if v is not None:

torchbench.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@
6161
SKIP = {
6262
# non-deterministic output / cant check correctness
6363
"pyhpc_turbulent_kinetic_energy",
64-
# https://github.com/facebookresearch/torchdynamo/issues/101
64+
# https://github.com/pytorch/torchdynamo/issues/101
6565
"detectron2_maskrcnn",
66-
# https://github.com/facebookresearch/torchdynamo/issues/145
66+
# https://github.com/pytorch/torchdynamo/issues/145
6767
"fambench_xlmr",
6868
}
6969

0 commit comments

Comments
 (0)