Deprecate primTorch module, replace it with decompositions in module Owners (#114754)

Context: pt2 oncall is revamping its labeling system. One of the guidelines is to remove duplicate labeling in our system. Both primTorch and decomposition labels are referring to the same thing. primTorch was the legacy name (and we no longer have a primTorch project), so using decomposition as the label name makes more sense.

Right now, the only open issues that use "module: primTorch" are the ones generated by the DISABLED bots. Once we replace the label in the bot, we can safely remove the primTorch label.

Here an example of the issue that has primTorch label :
https://github.com/pytorch/pytorch/issues/112719

Torchbot uses following logic to auto extract module owners:
https://github.com/pytorch/test-infra/blob/main/torchci/pages/api/flaky-tests/disable.ts#L391

Pull Request resolved: https://github.com/pytorch/pytorch/pull/114754
Approved by: https://github.com/huydhn
This commit is contained in:
atalman 2023-11-29 18:27:20 +00:00 committed by PyTorch MergeBot
parent b6df841460
commit ba4285bd9e
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
# Owner(s): ["module: primTorch", "module: decompositions"]
# Owner(s): ["module: decompositions"]
from collections import defaultdict
from torch import Tensor

View File

@ -1,4 +1,4 @@
# Owner(s): ["module: primTorch"]
# Owner(s): ["module: decompositions"]
import itertools
import torch

View File

@ -1,4 +1,4 @@
# Owner(s): ["module: primTorch"]
# Owner(s): ["module: decompositions"]
from functools import partial
from itertools import product