graph_execution_optimizer.py 10.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
#   Copyright (c) 2019 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

14
import copy
15 16 17 18 19
import paddle
from paddle.fluid.framework import core
from paddle.fluid import compiler
from .meta_optimizer_base import MetaOptimizerBase
from ..base.private_helper_function import wait_server_ready
D
Dong Daxiang 已提交
20
import logging
Y
Yuang Liu 已提交
21
from paddle.static import BuildStrategy
22

23 24
__all__ = []

25 26 27 28 29 30 31

class GraphExecutionOptimizer(MetaOptimizerBase):
    def __init__(self, optimizer):
        super(GraphExecutionOptimizer, self).__init__(optimizer)
        self.inner_opt = optimizer
        # we do not allow meta optimizer to be inner optimizer currently
        self.meta_optimizers_white_list = []
32
        self.meta_optimizers_black_list = []
33 34 35 36 37 38 39 40

    def _is_graph_out(self):
        return True

    def _can_apply(self):
        """
        Basically, this is PE, and almost all programs can be executed here
        """
D
Dong Daxiang 已提交
41 42 43 44
        if not self.role_maker._is_collective:
            # update me. currently, if parameter server is used
            # graph execution optimizer can not be applied
            return False
45 46 47 48 49 50 51 52 53 54
        return True

    def backward(self,
                 loss,
                 startup_program=None,
                 parameter_list=None,
                 no_grad_set=None,
                 callbacks=None):
        pass

55
    # should fix the variable
56
    def _setup_nccl_op(self, startup_program, main_program, build_strategy):
57
        trainer_endpoints = self.role_maker._get_trainer_endpoints()
58 59
        other_trainers = copy.copy(trainer_endpoints)

60 61
        trainer_id = self.role_maker._worker_index()
        current_endpoint = self.role_maker._get_trainer_endpoints()[trainer_id]
62 63
        other_trainers.remove(current_endpoint)

64
        trainer_endpoints_env = ",".join(trainer_endpoints)
65
        trainers_num = self.role_maker._worker_num()
66

W
WangXi 已提交
67 68 69
        # NOTE(wangxi): npu don't need to wait server ready
        if trainer_id == 0 and not paddle.is_compiled_with_npu():
            wait_server_ready(other_trainers)
70

71 72 73
        if core.is_compiled_with_cuda():
            comm_id_var = startup_program.global_block().create_var(
                name="NCCLID", persistable=True, type=core.VarDesc.VarType.RAW)
74

75
            for i in range(1, build_strategy.nccl_comm_num):
76
                startup_program.global_block().create_var(
77
                    name="NCCLID_{}".format(i),
78 79
                    persistable=True,
                    type=core.VarDesc.VarType.RAW)
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112

            if build_strategy.use_hierarchical_allreduce:
                for i in range(0, build_strategy.nccl_comm_num):
                    startup_program.global_block().create_var(
                        name="Hierarchical_inter_NCCLID_{}".format(i),
                        persistable=True,
                        type=core.VarDesc.VarType.RAW)
                    startup_program.global_block().create_var(
                        name="Hierarchical_exter_NCCLID_{}".format(i),
                        persistable=True,
                        type=core.VarDesc.VarType.RAW)

            startup_program.global_block().append_op(
                type="gen_nccl_id",
                inputs={},
                outputs={"NCCLID": comm_id_var},
                attrs={
                    "trainers": trainer_endpoints,
                    "trainer_id": trainer_id,
                    "nccl_comm_num": build_strategy.nccl_comm_num,
                    "use_hierarchical_allreduce":
                    build_strategy.use_hierarchical_allreduce,
                    "hierarchical_allreduce_inter_ranks":
                    build_strategy.hierarchical_allreduce_inter_nranks
                })
        elif core.is_compiled_with_xpu():
            comm_id_var = startup_program.global_block().create_var(
                name="BKCLID", persistable=True, type=core.VarDesc.VarType.RAW)

            #NOTE(liuyuhui) Baidu Kunlun Communication Library(BKCL) currently do not support multi machines.
            assert build_strategy.bkcl_comm_num == 1, \
                "Baidu Kunlun Communication Library(BKCL) currently do not support multi machines."
            for i in range(1, build_strategy.bkcl_comm_num):
113
                startup_program.global_block().create_var(
114
                    name="BKCLID_{}".format(i),
115 116 117
                    persistable=True,
                    type=core.VarDesc.VarType.RAW)

118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
            startup_program.global_block().append_op(
                type="gen_bkcl_id",
                inputs={},
                outputs={"BKCLID": comm_id_var},
                attrs={
                    "trainers": trainer_endpoints,
                    "trainer_id": trainer_id,
                    "nccl_comm_num": build_strategy.nccl_comm_num,
                    "use_hierarchical_allreduce":
                    build_strategy.use_hierarchical_allreduce,
                    "hierarchical_allreduce_inter_ranks":
                    build_strategy.hierarchical_allreduce_inter_nranks
                })
        else:
            raise ValueError(
                "comm_id must be generated in paddlepaddle-xpu or paddlepaddle-gpu."
            )
135 136

    def _try_to_compile(self, startup_program, main_program, loss):
137
        dist_strategy = self.user_defined_strategy
138 139
        local_build_strategy = dist_strategy.build_strategy

140
        local_build_strategy.use_hierarchical_allreduce = \
141
            dist_strategy.use_hierarchical_allreduce
142
        local_build_strategy.hierarchical_allreduce_inter_nranks = \
143
            dist_strategy.hierarchical_allreduce_inter_nranks
144
        local_build_strategy.sync_batch_norm = \
145
            dist_strategy.sync_batch_norm
146
        local_build_strategy.fuse_all_reduce_ops = \
147
            dist_strategy.fuse_all_reduce_ops
148
        local_build_strategy.nccl_comm_num = \
149
            dist_strategy.nccl_comm_num
150

Y
Yuang Liu 已提交
151 152 153 154 155 156 157 158 159 160 161
        gradient_scale_configs = self.user_defined_strategy.gradient_scale_configs
        scale_strategys = {
            'avg': BuildStrategy.GradientScaleStrategy.CoeffNumDevice,
            'sum': BuildStrategy.GradientScaleStrategy.One,
            'customized': BuildStrategy.GradientScaleStrategy.Customized,
        }
        assert gradient_scale_configs['scale_strategy'] in scale_strategys, \
            "gradient_scale_configs.scale_strategy must be 'avg', 'sum' or 'customized'"
        local_build_strategy.gradient_scale_strategy = \
            scale_strategys[gradient_scale_configs['scale_strategy']]

162 163 164 165 166 167
        if self.user_defined_strategy.recompute == True:
            logging.warn(
                "set enable_sequential_execution=True since you have enable the recompute strategy"
            )
            local_build_strategy.enable_sequential_execution = True

168
        exe_strategy = self.user_defined_strategy.execution_strategy
169 170
        worker_num = self.role_maker._worker_num()
        node_num = self.role_maker._node_num()
171

172
        if self.role_maker._is_collective:
173
            assert worker_num >= 1, "nccl2 worker_num must >= 1, now:{}" % worker_num
174

175
        if worker_num <= 1:
176
            # local mode
177
            if local_build_strategy.nccl_comm_num > 1:
178
                logging.warn("set nccl_comm_num=1 since you only have 1 node.")
179
            local_build_strategy.nccl_comm_num = 1
180

181
        if node_num <= 1:
182
            if local_build_strategy.use_hierarchical_allreduce:
183 184 185
                logging.warn(
                    "set hierachical_allreduce=False since you only have 1 node."
                )
186
            local_build_strategy.use_hierarchical_allreduce = False
187

188
        sync_allreduce = dist_strategy.sync_nccl_allreduce
189
        if sync_allreduce:
190 191 192 193
            exe_strategy.num_threads = max(
                local_build_strategy.nccl_comm_num + 1,
                exe_strategy.num_threads)
            if local_build_strategy.nccl_comm_num > 1:
194
                logging.warn(
195
                    "nccl_comm_num > 1, you may need to set sync_nccl_allreduce=False to ensure that different nccl comms can overlap"
196 197
                )

198
        sync_batch_norm = local_build_strategy.sync_batch_norm
199
        if sync_batch_norm:
200 201
            local_build_strategy.nccl_comm_num = 1
            local_build_strategy.use_hierarchical_allreduce = False
202 203 204 205 206 207
            exe_strategy.num_threads = 1
            logging.warn(
                "use sync_batch_norm will hang when set num_threads > 1, so "
                "set num_threads=1, nccl_comm_num=1, hierachical_allreduce=False."
            )

208 209 210 211 212
        # NOTE. compatible with compiler, otherwise these values will be overwritten by compiler
        main_program._nccl_comm_num = local_build_strategy.nccl_comm_num
        main_program._use_hierarchical_allreduce = local_build_strategy.use_hierarchical_allreduce
        main_program._hierarchical_allreduce_inter_nranks = local_build_strategy.hierarchical_allreduce_inter_nranks

213
        # TODO(guru4elephant): should be an independent optimizer
214 215 216
        if worker_num > 1:
            self._setup_nccl_op(startup_program, main_program,
                                local_build_strategy)
217

218 219 220
        local_build_strategy.num_trainers = self.role_maker._worker_num()
        local_build_strategy.trainer_id = self.role_maker._worker_index()
        local_build_strategy.trainers_endpoints = self.role_maker._get_trainer_endpoints(
221
        )
222
        local_build_strategy.enable_backward_optimizer_op_deps = True
223 224 225 226 227

        self._compiled_program = compiler.CompiledProgram(main_program)

        self._compiled_program.with_data_parallel(
            loss_name=loss.name,
228
            build_strategy=local_build_strategy,
229 230 231 232 233
            exec_strategy=exe_strategy,
            share_vars_from=None)

        return self._compiled_program

D
Dong Daxiang 已提交
234 235
    def _disable_strategy(self, dist_strategy):
        # TODO(guru4elephant): should close all PE related flags here
236 237
        return

238
    def _enable_strategy(self, dist_strategy, context):
239 240
        # by default, graph execution strategy is enabled
        return
D
Dong Daxiang 已提交
241

242 243 244 245 246 247
    def minimize(self,
                 loss,
                 startup_program=None,
                 parameter_list=None,
                 no_grad_set=None):
        if startup_program == None:
248
            startup_program = paddle.static.default_startup_program()
249 250
        compiled_program = self._try_to_compile(startup_program,
                                                loss.block.program, loss)
251
        loss.block.program._graph = compiled_program
252 253 254

        # just return self.optimizer_ops and self.param_grads
        return None, None