From d1e5bafcd44ed93679b13965de40c5f38cda9060 Mon Sep 17 00:00:00 2001 From: Zangwei Zheng Date: Wed, 4 Jan 2023 10:13:02 +0800 Subject: [PATCH] [NFC] polish colossalai/auto_parallel/tensor_shard/deprecated/__init__.py code style (#2291) --- .../auto_parallel/tensor_shard/deprecated/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/colossalai/auto_parallel/tensor_shard/deprecated/__init__.py b/colossalai/auto_parallel/tensor_shard/deprecated/__init__.py index a081ce69c..bd47f2adf 100644 --- a/colossalai/auto_parallel/tensor_shard/deprecated/__init__.py +++ b/colossalai/auto_parallel/tensor_shard/deprecated/__init__.py @@ -1,6 +1,6 @@ +from .cost_graph import CostGraph +from .graph_analysis import GraphAnalyser from .options import SolverOptions -from .strategies_constructor import StrategiesConstructor from .sharding_strategy import ShardingStrategy, StrategiesVector -from .cost_graph import CostGraph from .solver import Solver -from .graph_analysis import GraphAnalyser \ No newline at end of file +from .strategies_constructor import StrategiesConstructor