amp_optimizer.py 4.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
#   Copyright (c) 2020 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

import paddle.fluid.contrib.mixed_precision as mixed_precision
from .meta_optimizer_base import MetaOptimizerBase


class AMPOptimizer(MetaOptimizerBase):
    def __init__(self, optimizer):
        super(AMPOptimizer, self).__init__(optimizer)
        self.inner_opt = optimizer
22
        self.wrapped_opt = None
23
        # we do not allow meta optimizer to be inner optimizer currently
24
        self.meta_optimizers_white_list = [
25 26 27 28
            "LarsOptimizer",
            "LambOptimizer",
            "RecomputeOptimizer",
            "GraphExecutionOptimizer",
29 30
        ]
        self.meta_optimizers_black_list = ["DGCOptimizer"]
31 32 33 34 35 36

    def _set_basic_info(self, loss, role_maker, user_defined_optimizer,
                        user_defined_strategy):
        super(AMPOptimizer, self)._set_basic_info(
            loss, role_maker, user_defined_optimizer, user_defined_strategy)

37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
    def _init_wrapped_opt(self):
        if self.wrapped_opt is not None:
            return

        config = self.user_defined_strategy.amp_configs

        custom_white_list = set(config['custom_white_list'])
        custom_black_list = set(config['custom_black_list'])
        custom_black_varnames = set(config['custom_black_varnames'])
        amp_lists = mixed_precision.AutoMixedPrecisionLists(
            custom_white_list, custom_black_list, custom_black_varnames)

        self.wrapped_opt = mixed_precision.decorate(
            self.inner_opt, amp_lists, config['init_loss_scaling'],
            config['incr_every_n_steps'], config['decr_every_n_nan_or_inf'],
            config['incr_ratio'], config['decr_ratio'],
53 54
            config['use_dynamic_loss_scaling'], config['use_pure_fp16'],
            config['use_fp16_guard'])
55

56 57 58 59 60 61 62 63 64
        # if worker_num > 1, all cards will communication with each other,
        # add is_distributed to optimize amp, overlap communication and
        # computation by split the check_finite_and_unscale op.
        is_distributed = self.role_maker._worker_num() > 1
        if self.user_defined_strategy.sharding:
            # FIXME(wangxi). sharding failed when split check_finite_and_unscale
            is_distributed = False
        self.wrapped_opt._set_distributed(is_distributed)

65
    def _can_apply(self):
66 67 68
        if not self.role_maker._is_collective:
            return False

69 70 71 72 73 74
        if self.user_defined_strategy.amp:
            return True
        return False

    def _disable_strategy(self, dist_strategy):
        dist_strategy.amp = False
75
        dist_strategy.amp_configs = {}
76

77
    def _enable_strategy(self, dist_strategy, context):
78 79 80 81 82 83
        dist_strategy.amp = True
        dist_strategy.amp_configs = {
            "init_loss_scaling": 32768.0,
            "incr_every_n_steps": 1000,
            "decr_every_n_nan_or_inf": 2,
            "incr_ratio": 2.0,
84
            "decr_ratio": 0.8,
85 86 87
            "use_dynamic_loss_scaling": True
        }

88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
    def backward(self,
                 loss,
                 startup_program=None,
                 parameter_list=None,
                 no_grad_set=None,
                 callbacks=None):
        # maybe inner_opt of other meta optimizer
        self._init_wrapped_opt()
        return self.wrapped_opt.backward(loss, startup_program, parameter_list,
                                         no_grad_set, callbacks)

    def apply_gradients(self, params_grads):
        return self.wrapped_opt.apply_gradients(params_grads=params_grads)

    def apply_optimize(self, loss, startup_program, params_grads):
        return self.wrapped_opt.apply_optimize(
            loss, startup_program=startup_program, params_grads=params_grads)

106 107 108 109 110
    def minimize_impl(self,
                      loss,
                      startup_program=None,
                      parameter_list=None,
                      no_grad_set=None):
111
        self._init_wrapped_opt()
112
        optimize_ops, params_grads = \
113
            self.wrapped_opt.minimize(loss, startup_program,
114 115
                                  parameter_list, no_grad_set)
        return optimize_ops, params_grads
116 117 118 119 120 121 122 123

    def amp_init(self,
                 place,
                 scope=None,
                 test_program=None,
                 use_fp16_test=False):
        return self.wrapped_opt.amp_init(place, scope, test_program,
                                         use_fp16_test)