planner_v2.py 2.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
# Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

from .completion import Completer
from .dist_context import get_default_distributed_context
17
from .tuner.parallel_tuner import ParallelTuner
18
from .utils import is_naive_data_parallel
19

20 21 22 23 24 25 26 27 28 29

class Planner:
    def __init__(self, mode, dist_context):
        self._mode = mode
        self._dist_context = dist_context

        # NOTE: [HighOrderGrad]. There are grad ops in forward phase, and it need
        # dependency of backward-forward ops in forward completion.
        default_ctx = get_default_distributed_context()
        self._dist_context._dist_op_context = default_ctx.dist_op_context
30 31
        self._dist_context.data_parallel = default_ctx.data_parallel
        if not is_naive_data_parallel(self._dist_context):
32 33 34 35 36
            # Use SSA graph for complex parallism
            self._dist_context.initialize(with_graph=True)
        else:
            # Use program for data parallel parallism
            self._dist_context.initialize(with_graph=False)
37 38 39

        self._completer = Completer(self._dist_context)

40
        self._strategy = dist_context.strategy
41 42
        # set parallel tuner for auto search
        if self._strategy.auto_mode == "full":
43 44 45
            self._parallel_tuner = ParallelTuner(
                self._dist_context, mode=self._mode
            )
46

47 48 49 50 51
    @property
    def completer(self):
        return self._completer

    def plan(self):
52 53 54 55
        if self._strategy.auto_mode == "full":
            self._parallel_tuner.tune()
        else:
            self._completer.complete_forward_annotation()
56 57
        # parse forward sub block
        self._dist_context.block_state.parse_forward_blocks(
58 59
            self._dist_context.serial_main_program
        )