mirror of
https://github.com/saymrwulf/pytorch.git
synced 2026-05-14 20:57:59 +00:00
[codemod][usort] apply import merging for fbcode (1 of 11) (#78973)
Summary: Applies new import merging and sorting from µsort v1.0. When merging imports, µsort will make a best-effort to move associated comments to match merged elements, but there are known limitations due to the diynamic nature of Python and developer tooling. These changes should not produce any dangerous runtime changes, but may require touch-ups to satisfy linters and other tooling. Note that µsort uses case-insensitive, lexicographical sorting, which results in a different ordering compared to isort. This provides a more consistent sorting order, matching the case-insensitive order used when sorting import statements by module name, and ensures that "frog", "FROG", and "Frog" always sort next to each other. For details on µsort's sorting and merging semantics, see the user guide: https://usort.readthedocs.io/en/stable/guide.html#sorting Test Plan: S271899 Reviewed By: lisroach Differential Revision: D36402110 Pull Request resolved: https://github.com/pytorch/pytorch/pull/78973 Approved by: https://github.com/osalpekar
This commit is contained in:
parent
da805953fb
commit
f625bb4bc9
23 changed files with 50 additions and 54 deletions
|
|
@ -2,9 +2,7 @@
|
|||
|
||||
from io import BytesIO
|
||||
|
||||
from torch.package import (
|
||||
PackageExporter,
|
||||
)
|
||||
from torch.package import PackageExporter
|
||||
from torch.testing._internal.common_utils import run_tests
|
||||
|
||||
try:
|
||||
|
|
|
|||
|
|
@ -11,10 +11,10 @@ from unittest import skipIf
|
|||
import torch
|
||||
from torch.package import PackageExporter, PackageImporter
|
||||
from torch.testing._internal.common_utils import (
|
||||
run_tests,
|
||||
IS_FBCODE,
|
||||
IS_SANDCASTLE,
|
||||
IS_WINDOWS,
|
||||
run_tests,
|
||||
)
|
||||
|
||||
try:
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ from pathlib import Path
|
|||
from unittest import skipIf
|
||||
|
||||
from torch.package import PackageImporter
|
||||
from torch.testing._internal.common_utils import run_tests, IS_FBCODE, IS_SANDCASTLE
|
||||
from torch.testing._internal.common_utils import IS_FBCODE, IS_SANDCASTLE, run_tests
|
||||
|
||||
try:
|
||||
from .common import PackageTestCase
|
||||
|
|
|
|||
|
|
@ -4,10 +4,10 @@ from io import BytesIO
|
|||
|
||||
from torch.package import PackageExporter, PackageImporter
|
||||
from torch.package._mangling import (
|
||||
PackageMangler,
|
||||
demangle,
|
||||
get_mangle_prefix,
|
||||
is_mangled,
|
||||
PackageMangler,
|
||||
)
|
||||
from torch.testing._internal.common_utils import run_tests
|
||||
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ from pathlib import Path
|
|||
from textwrap import dedent
|
||||
from unittest import skipIf
|
||||
|
||||
from torch.package import PackageExporter, PackageImporter, is_from_package
|
||||
from torch.package import is_from_package, PackageExporter, PackageImporter
|
||||
from torch.package.package_exporter import PackagingError
|
||||
from torch.testing._internal.common_utils import IS_FBCODE, IS_SANDCASTLE, run_tests
|
||||
|
||||
|
|
|
|||
|
|
@ -125,7 +125,7 @@ class TestPackageFX(PackageTestCase):
|
|||
|
||||
def test_package_fx_custom_tracer(self):
|
||||
from package_a.test_all_leaf_modules_tracer import TestAllLeafModulesTracer
|
||||
from package_a.test_module import SimpleTest, ModWithTwoSubmodsAndTensor
|
||||
from package_a.test_module import ModWithTwoSubmodsAndTensor, SimpleTest
|
||||
|
||||
class SpecialGraphModule(torch.fx.GraphModule):
|
||||
def __init__(self, root, graph, info):
|
||||
|
|
|
|||
|
|
@ -6,11 +6,7 @@ from unittest import skipIf
|
|||
|
||||
import torch
|
||||
from torch.package import PackageExporter, PackageImporter
|
||||
from torch.testing._internal.common_utils import (
|
||||
IS_FBCODE,
|
||||
IS_SANDCASTLE,
|
||||
run_tests,
|
||||
)
|
||||
from torch.testing._internal.common_utils import IS_FBCODE, IS_SANDCASTLE, run_tests
|
||||
|
||||
try:
|
||||
from .common import PackageTestCase
|
||||
|
|
@ -538,10 +534,7 @@ class TestPackageScript(PackageTestCase):
|
|||
Test tensors shared across eager and ScriptModules on load
|
||||
are the same.
|
||||
"""
|
||||
from package_a.test_module import (
|
||||
ModWithTensor,
|
||||
ModWithTwoSubmodsAndTensor,
|
||||
)
|
||||
from package_a.test_module import ModWithTensor, ModWithTwoSubmodsAndTensor
|
||||
|
||||
shared_tensor = torch.ones(3, 3)
|
||||
|
||||
|
|
@ -595,10 +588,7 @@ class TestPackageScript(PackageTestCase):
|
|||
the backing cpp TensorImpl is. We load/save storages based off of this
|
||||
cpp TensorImpl and not the python identity.
|
||||
"""
|
||||
from package_a.test_module import (
|
||||
ModWithTensor,
|
||||
ModWithTwoSubmodsAndTensor,
|
||||
)
|
||||
from package_a.test_module import ModWithTensor, ModWithTwoSubmodsAndTensor
|
||||
|
||||
shared_tensor = torch.ones(3, 3)
|
||||
|
||||
|
|
|
|||
|
|
@ -2,11 +2,7 @@
|
|||
|
||||
from io import BytesIO
|
||||
|
||||
from torch.package import (
|
||||
PackageExporter,
|
||||
PackageImporter,
|
||||
sys_importer,
|
||||
)
|
||||
from torch.package import PackageExporter, PackageImporter, sys_importer
|
||||
from torch.testing._internal.common_utils import run_tests
|
||||
|
||||
try:
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ from textwrap import dedent
|
|||
from unittest import skipIf
|
||||
|
||||
from torch.package import PackageExporter, PackageImporter, sys_importer
|
||||
from torch.testing._internal.common_utils import run_tests, IS_FBCODE, IS_SANDCASTLE
|
||||
from torch.testing._internal.common_utils import IS_FBCODE, IS_SANDCASTLE, run_tests
|
||||
|
||||
try:
|
||||
from .common import PackageTestCase
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
import argparse
|
||||
import os
|
||||
from typing import List, Optional, Tuple, cast
|
||||
from typing import cast, List, Optional, Tuple
|
||||
|
||||
from ..util.setting import (
|
||||
CompilerType,
|
||||
JSON_FOLDER_BASE_DIR,
|
||||
LOG_DIR,
|
||||
CompilerType,
|
||||
Option,
|
||||
Test,
|
||||
TestList,
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ import os
|
|||
import subprocess
|
||||
from typing import List, Optional
|
||||
|
||||
from ..util.setting import TOOLS_FOLDER, CompilerType, TestType
|
||||
from ..util.setting import CompilerType, TestType, TOOLS_FOLDER
|
||||
from ..util.utils import print_error, remove_file
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
import os
|
||||
import subprocess
|
||||
from typing import IO, Dict, List, Set, Tuple
|
||||
from typing import Dict, IO, List, Set, Tuple
|
||||
|
||||
from ..oss.utils import get_pytorch_folder
|
||||
from ..util.setting import SUMMARY_FOLDER_DIR, TestList, TestStatusType
|
||||
|
|
|
|||
|
|
@ -4,8 +4,8 @@ import time
|
|||
from typing import Any, Dict, List, Set, Tuple
|
||||
|
||||
from ..util.setting import (
|
||||
JSON_FOLDER_BASE_DIR,
|
||||
CompilerType,
|
||||
JSON_FOLDER_BASE_DIR,
|
||||
TestList,
|
||||
TestPlatform,
|
||||
TestStatusType,
|
||||
|
|
|
|||
|
|
@ -14,7 +14,9 @@ def run_cpp_test(binary_file: str) -> None:
|
|||
|
||||
def get_tool_path_by_platform(platform: TestPlatform) -> str:
|
||||
if platform == TestPlatform.FBCODE:
|
||||
from caffe2.fb.code_coverage.tool.package.fbcode.utils import get_llvm_tool_path # type: ignore[import]
|
||||
from caffe2.fb.code_coverage.tool.package.fbcode.utils import ( # type: ignore[import]
|
||||
get_llvm_tool_path,
|
||||
)
|
||||
|
||||
return get_llvm_tool_path() # type: ignore[no-any-return]
|
||||
else:
|
||||
|
|
|
|||
|
|
@ -5,9 +5,9 @@ import time
|
|||
from typing import Any, NoReturn, Optional
|
||||
|
||||
from .setting import (
|
||||
CompilerType,
|
||||
LOG_DIR,
|
||||
PROFILE_DIR,
|
||||
CompilerType,
|
||||
TestList,
|
||||
TestPlatform,
|
||||
TestType,
|
||||
|
|
|
|||
|
|
@ -6,9 +6,9 @@ from .setting import (
|
|||
JSON_FOLDER_BASE_DIR,
|
||||
LOG_DIR,
|
||||
MERGED_FOLDER_BASE_DIR,
|
||||
Option,
|
||||
PROFILE_DIR,
|
||||
SUMMARY_FOLDER_DIR,
|
||||
Option,
|
||||
)
|
||||
from .utils import create_folder, get_raw_profiles_folder, remove_file
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
from collections import deque
|
||||
from typing import Set, List
|
||||
from typing import List, Set
|
||||
|
||||
|
||||
class DiGraph:
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
"""isort:skip_file"""
|
||||
from pickle import EXT1, EXT2, EXT4, GLOBAL, STACK_GLOBAL, Pickler, PicklingError
|
||||
from pickle import _compat_pickle, _extension_registry, _getattribute, _Pickler # type: ignore[attr-defined]
|
||||
from pickle import ( # type: ignore[attr-defined]
|
||||
_compat_pickle,
|
||||
_extension_registry,
|
||||
_getattribute,
|
||||
_Pickler,
|
||||
EXT1,
|
||||
EXT2,
|
||||
EXT4,
|
||||
GLOBAL,
|
||||
Pickler,
|
||||
PicklingError,
|
||||
STACK_GLOBAL,
|
||||
)
|
||||
from struct import pack
|
||||
from types import FunctionType
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,2 @@
|
|||
from .find_first_use_of_broken_modules import (
|
||||
find_first_use_of_broken_modules,
|
||||
)
|
||||
from .trace_dependencies import (
|
||||
trace_dependencies,
|
||||
)
|
||||
from .find_first_use_of_broken_modules import find_first_use_of_broken_modules
|
||||
from .trace_dependencies import trace_dependencies
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from typing import Dict, List
|
||||
|
||||
from .glob_group import GlobPattern, GlobGroup
|
||||
from .glob_group import GlobGroup, GlobPattern
|
||||
|
||||
|
||||
class Directory:
|
||||
|
|
|
|||
|
|
@ -1,9 +1,12 @@
|
|||
import importlib
|
||||
from abc import ABC, abstractmethod
|
||||
from pickle import _getattribute, _Pickler # type: ignore[attr-defined]
|
||||
from pickle import whichmodule as _pickle_whichmodule # type: ignore[attr-defined]
|
||||
from pickle import ( # type: ignore[attr-defined] # type: ignore[attr-defined]
|
||||
_getattribute,
|
||||
_Pickler,
|
||||
whichmodule as _pickle_whichmodule,
|
||||
)
|
||||
from types import ModuleType
|
||||
from typing import Any, List, Optional, Tuple, Dict
|
||||
from typing import Any, Dict, List, Optional, Tuple
|
||||
|
||||
from ._mangling import demangle, get_mangle_prefix, is_mangled
|
||||
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ import linecache
|
|||
import pickletools
|
||||
import platform
|
||||
import types
|
||||
from collections import OrderedDict, defaultdict
|
||||
from collections import defaultdict, OrderedDict
|
||||
from dataclasses import dataclass
|
||||
from enum import Enum
|
||||
from pathlib import Path
|
||||
|
|
@ -13,14 +13,14 @@ from typing import (
|
|||
Any,
|
||||
BinaryIO,
|
||||
Callable,
|
||||
cast,
|
||||
DefaultDict,
|
||||
Dict,
|
||||
List,
|
||||
Optional,
|
||||
Sequence,
|
||||
Set,
|
||||
Union,
|
||||
cast,
|
||||
DefaultDict,
|
||||
)
|
||||
|
||||
import torch
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ import os.path
|
|||
import types
|
||||
from contextlib import contextmanager
|
||||
from pathlib import Path
|
||||
from typing import cast, Any, BinaryIO, Callable, Dict, List, Optional, Union
|
||||
from typing import Any, BinaryIO, Callable, cast, Dict, List, Optional, Union
|
||||
from weakref import WeakValueDictionary
|
||||
|
||||
import torch
|
||||
|
|
@ -21,9 +21,9 @@ from ._importlib import (
|
|||
_resolve_name,
|
||||
_sanity_check,
|
||||
)
|
||||
from ._mangling import PackageMangler, demangle
|
||||
from ._mangling import demangle, PackageMangler
|
||||
from ._package_unpickler import PackageUnpickler
|
||||
from .file_structure_representation import Directory, _create_directory_from_file_list
|
||||
from .file_structure_representation import _create_directory_from_file_list, Directory
|
||||
from .glob_group import GlobPattern
|
||||
from .importer import Importer
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue