Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ edges and many things can and will change.
## Installation

To install the latest code from GitHub, clone/download
https://github.com/pytorch-labs/torchfix and run `pip install .`
https://github.com/meta-pytorch/torchfix and run `pip install .`
inside the directory.

To install a release version from PyPI, run `pip install torchfix`.
Expand Down Expand Up @@ -51,7 +51,7 @@ To enable them, use standard flake8 configuration options for the plugin mode or
## Reporting problems

If you encounter a bug or some other problem with TorchFix, please file an issue on
https://github.com/pytorch-labs/torchfix/issues.
https://github.com/meta-pytorch/torchfix/issues.

## Rule Code Assignment Policy

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ dev = [
]

[project.urls]
Repository = "https://github.com/pytorch-labs/torchfix"
"Bug Tracker" = "https://github.com/pytorch-labs/torchfix/issues"
Repository = "https://github.com/meta-pytorch/torchfix"
"Bug Tracker" = "https://github.com/meta-pytorch/torchfix/issues"

[project.scripts]
torchfix = "torchfix.__main__:main"
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4:1 TOR001 Use of removed function torch.solve: https://github.com/pytorch-labs/torchfix#torchsolve
4:1 TOR001 Use of removed function torch.solve: https://github.com/meta-pytorch/torchfix#torchsolve
8 changes: 4 additions & 4 deletions tests/fixtures/deprecated_symbols/checker/sdp_kernel.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
3:1 TOR103 Import of deprecated function torch.backends.cuda.sdp_kernel: https://github.com/pytorch-labs/torchfix#torchbackendscudasdp_kernel
5:6 TOR101 Use of deprecated function torch.backends.cuda.sdp_kernel: https://github.com/pytorch-labs/torchfix#torchbackendscudasdp_kernel
8:6 TOR101 Use of deprecated function torch.backends.cuda.sdp_kernel: https://github.com/pytorch-labs/torchfix#torchbackendscudasdp_kernel
11:6 TOR101 Use of deprecated function torch.backends.cuda.sdp_kernel: https://github.com/pytorch-labs/torchfix#torchbackendscudasdp_kernel
3:1 TOR103 Import of deprecated function torch.backends.cuda.sdp_kernel: https://github.com/meta-pytorch/torchfix#torchbackendscudasdp_kernel
5:6 TOR101 Use of deprecated function torch.backends.cuda.sdp_kernel: https://github.com/meta-pytorch/torchfix#torchbackendscudasdp_kernel
8:6 TOR101 Use of deprecated function torch.backends.cuda.sdp_kernel: https://github.com/meta-pytorch/torchfix#torchbackendscudasdp_kernel
11:6 TOR101 Use of deprecated function torch.backends.cuda.sdp_kernel: https://github.com/meta-pytorch/torchfix#torchbackendscudasdp_kernel
2 changes: 1 addition & 1 deletion tests/fixtures/deprecated_symbols/checker/weight_norm.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2:5 TOR101 Use of deprecated function torch.nn.utils.weight_norm: https://github.com/pytorch-labs/torchfix#torchnnutilsweight_norm
2:5 TOR101 Use of deprecated function torch.nn.utils.weight_norm: https://github.com/meta-pytorch/torchfix#torchnnutilsweight_norm
6 changes: 3 additions & 3 deletions torchfix/deprecated_symbols.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
- name: torch.solve
deprecate_pr: https://github.com/pytorch/pytorch/pull/57741
remove_pr: https://github.com/pytorch/pytorch/pull/70986
reference: https://github.com/pytorch-labs/torchfix#torchsolve
reference: https://github.com/meta-pytorch/torchfix#torchsolve

- name: torch.qr
deprecate_pr: https://github.com/pytorch/pytorch/pull/57745
Expand Down Expand Up @@ -71,7 +71,7 @@
- name: torch.nn.utils.weight_norm
deprecate_pr: https://github.com/pytorch/pytorch/pull/103001
remove_pr:
reference: https://github.com/pytorch-labs/torchfix#torchnnutilsweight_norm
reference: https://github.com/meta-pytorch/torchfix#torchnnutilsweight_norm

- name: torch.utils._pytree._register_pytree_node
deprecate_pr: https://github.com/pytorch/pytorch/pull/112111
Expand All @@ -81,7 +81,7 @@
- name: torch.backends.cuda.sdp_kernel
deprecate_pr: https://github.com/pytorch/pytorch/pull/114689
remove_pr:
reference: https://github.com/pytorch-labs/torchfix#torchbackendscudasdp_kernel
reference: https://github.com/meta-pytorch/torchfix#torchbackendscudasdp_kernel

- name: torch.cuda.amp.autocast
deprecate_pr: TBA
Expand Down
Loading