“5d1c20bce5bc1a7a94bca1324451532c28c89e36”上不存在“arch/arm/git@gitcode.net:openeuler/raspberrypi-kernel.git”
graph_execution_optimizer.py 10.0 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
21 22 23 24 25 26 27 28


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 = []
29
        self.meta_optimizers_black_list = []
30 31 32 33 34 35 36 37

    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 已提交
38 39 40 41
        if not self.role_maker._is_collective:
            # update me. currently, if parameter server is used
            # graph execution optimizer can not be applied
            return False
42 43 44 45 46 47 48 49 50 51
        return True

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

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

57 58
        trainer_id = self.role_maker._worker_index()
        current_endpoint = self.role_maker._get_trainer_endpoints()[trainer_id]
59 60
        other_trainers.remove(current_endpoint)

61
        trainer_endpoints_env = ",".join(trainer_endpoints)
62
        trainers_num = self.role_maker._worker_num()
63

64 65 66
        # FIXME(wangxi): approve this.
        #if trainer_id == 0:
        #    wait_server_ready(other_trainers)
67

68 69 70
        if core.is_compiled_with_cuda():
            comm_id_var = startup_program.global_block().create_var(
                name="NCCLID", persistable=True, type=core.VarDesc.VarType.RAW)
71

72
            for i in range(1, build_strategy.nccl_comm_num):
73
                startup_program.global_block().create_var(
74
                    name="NCCLID_{}".format(i),
75 76
                    persistable=True,
                    type=core.VarDesc.VarType.RAW)
77 78 79 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

            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):
110
                startup_program.global_block().create_var(
111
                    name="BKCLID_{}".format(i),
112 113 114
                    persistable=True,
                    type=core.VarDesc.VarType.RAW)

115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
            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."
            )
132 133

    def _try_to_compile(self, startup_program, main_program, loss):
134
        dist_strategy = self.user_defined_strategy
135 136
        local_build_strategy = dist_strategy.build_strategy

137
        local_build_strategy.use_hierarchical_allreduce = \
138
            dist_strategy.use_hierarchical_allreduce
139
        local_build_strategy.hierarchical_allreduce_inter_nranks = \
140
            dist_strategy.hierarchical_allreduce_inter_nranks
141
        local_build_strategy.sync_batch_norm = \
142
            dist_strategy.sync_batch_norm
143
        local_build_strategy.fuse_all_reduce_ops = \
144
            dist_strategy.fuse_all_reduce_ops
145
        local_build_strategy.nccl_comm_num = \
146
            dist_strategy.nccl_comm_num
147

148 149 150 151 152 153
        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

154
        exe_strategy = self.user_defined_strategy.execution_strategy
155 156
        worker_num = self.role_maker._worker_num()
        node_num = self.role_maker._node_num()
157

158
        if self.role_maker._is_collective:
159
            assert worker_num >= 1, "nccl2 worker_num must >= 1, now:{}" % worker_num
160

161
        if worker_num <= 1:
162
            # local mode
163
            if local_build_strategy.nccl_comm_num > 1:
164
                logging.warn("set nccl_comm_num=1 since you only have 1 node.")
165
            local_build_strategy.nccl_comm_num = 1
166

167
        if node_num <= 1:
168
            if local_build_strategy.use_hierarchical_allreduce:
169 170 171
                logging.warn(
                    "set hierachical_allreduce=False since you only have 1 node."
                )
172
            local_build_strategy.use_hierarchical_allreduce = False
173

174
        sync_allreduce = dist_strategy.sync_nccl_allreduce
175
        if sync_allreduce:
176 177 178 179
            exe_strategy.num_threads = max(
                local_build_strategy.nccl_comm_num + 1,
                exe_strategy.num_threads)
            if local_build_strategy.nccl_comm_num > 1:
180
                logging.warn(
181
                    "nccl_comm_num > 1, you may need to set sync_nccl_allreduce=False to ensure that different nccl comms can overlap"
182 183
                )

184
        sync_batch_norm = local_build_strategy.sync_batch_norm
185
        if sync_batch_norm:
186 187
            local_build_strategy.nccl_comm_num = 1
            local_build_strategy.use_hierarchical_allreduce = False
188 189 190 191 192 193
            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."
            )

194 195 196 197 198
        # 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

199
        # TODO(guru4elephant): should be an independent optimizer
200 201 202
        if worker_num > 1:
            self._setup_nccl_op(startup_program, main_program,
                                local_build_strategy)
203

204 205 206
        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(
207
        )
208
        local_build_strategy.enable_backward_optimizer_op_deps = True
209 210 211 212 213

        self._compiled_program = compiler.CompiledProgram(main_program)

        self._compiled_program.with_data_parallel(
            loss_name=loss.name,
214
            build_strategy=local_build_strategy,
215 216 217 218 219
            exec_strategy=exe_strategy,
            share_vars_from=None)

        return self._compiled_program

D
Dong Daxiang 已提交
220 221
    def _disable_strategy(self, dist_strategy):
        # TODO(guru4elephant): should close all PE related flags here
222 223
        return

224
    def _enable_strategy(self, dist_strategy, context):
225 226
        # by default, graph execution strategy is enabled
        return
D
Dong Daxiang 已提交
227

228 229 230 231 232 233
    def minimize(self,
                 loss,
                 startup_program=None,
                 parameter_list=None,
                 no_grad_set=None):
        if startup_program == None:
234
            startup_program = paddle.static.default_startup_program()
235 236
        compiled_program = self._try_to_compile(startup_program,
                                                loss.block.program, loss)
237
        loss.block.program._graph = compiled_program
238 239 240

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