planner_v2.py 2.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
# 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
from .utils import print_program_with_dist_attr

19 20
# from .tuner.parallel_tuner import ParallelTuner

21 22

class Planner:
23

24 25 26 27 28 29
    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.
30
        # TODO: The id mapping will be lost if we clone the original program.
31 32 33 34 35 36
        default_ctx = get_default_distributed_context()
        self._dist_context._dist_op_context = default_ctx.dist_op_context
        self._dist_context.initialize()

        self._completer = Completer(self._dist_context)

37 38 39 40 41
        self._strategy = dist_context.strategy
        # if self._strategy.auto_search:
        #     self._parallel_tuner = ParallelTuner(
        #         self._dist_context, mode=self._mode)

42 43 44 45 46 47
    @property
    def completer(self):
        return self._completer

    def plan(self):
        self._completer.complete_forward_annotation()
48 49 50 51
        # if self._strategy.auto_search:
        #     self._parallel_tuner.tune()
        # else:
        #     self._completer.complete_forward_annotation()
52 53 54
        # parse forward sub block
        self._dist_context.block_state.parse_forward_blocks(
            self._dist_context.serial_main_program)