auto_cast.py 6.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
#   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
# limitations under the License.

15
from paddle.fluid.dygraph.amp import amp_decorate, amp_guard
16

17
__all__ = []
18 19


20 21 22 23 24 25 26
def auto_cast(
    enable=True,
    custom_white_list=None,
    custom_black_list=None,
    level='O1',
    dtype='float16',
):
27 28
    """
    Create a context which enables auto-mixed-precision(AMP) of operators executed in dynamic graph mode.
29 30 31 32
    If enabled, the input data type (float32 or float16) of each operator is decided
    by autocast algorithm for better performance.

    Commonly, it is used together with `GradScaler` to achieve Auto-Mixed-Precision in
33
    imperative mode. It is used together with `decorator` to achieve Pure fp16 in imperative mode.
34 35 36

    Args:
        enable(bool, optional): Enable auto-mixed-precision or not. Default is True.
37
        custom_white_list(set|list|tuple, optional): The custom white_list. It's the set of ops that support
38
             fp16 calculation and are considered numerically-safe and performance-critical. These ops
39
             will be converted to fp16.
40
        custom_black_list(set|list|tuple, optional): The custom black_list. The set of ops that support fp16
41
             calculation and are considered numerically-dangerous and whose effects may also be
42
             observed in downstream ops. These ops will not be converted to fp16.
43
        level(str, optional): Auto mixed precision level. Accepted values are "O1" and "O2": O1 represent mixed precision, the input data type of each operator will be casted by white_list and black_list;
44
             O2 represent Pure fp16, all operators parameters and input data will be casted to fp16, except operators in black_list, don't support fp16 kernel and batchnorm. Default is O1(amp)
45 46
        dtype(str, optional): Whether to use 'float16' or 'bfloat16'. Default is 'float16'.

47 48 49 50 51 52
    Examples:

     .. code-block:: python

        import paddle

C
cnn 已提交
53
        conv2d = paddle.nn.Conv2D(3, 2, 3, bias_attr=False)
54 55 56 57
        data = paddle.rand([10, 3, 32, 32])

        with paddle.amp.auto_cast():
            conv = conv2d(data)
58
            print(conv.dtype) # paddle.float32
59 60 61

        with paddle.amp.auto_cast(enable=False):
            conv = conv2d(data)
62
            print(conv.dtype) # paddle.float32
63

64 65
        with paddle.amp.auto_cast(custom_black_list={'conv2d'}):
            conv = conv2d(data)
66
            print(conv.dtype) # paddle.float32
67 68 69 70 71

        a = paddle.rand([2,3])
        b = paddle.rand([2,3])
        with paddle.amp.auto_cast(custom_white_list={'elementwise_add'}):
            c = a + b
72
            print(c.dtype) # paddle.float32
73

74 75
        with paddle.amp.auto_cast(custom_white_list={'elementwise_add'}, level='O2'):
            d = a + b
76
            print(d.dtype) # paddle.float32
77 78

    """
79
    return amp_guard(enable, custom_white_list, custom_black_list, level, dtype)
80 81


82 83 84 85 86 87 88 89
def decorate(
    models,
    optimizers=None,
    level='O1',
    dtype='float16',
    master_weight=None,
    save_dtype=None,
):
90
    """
91
    Decorate models and optimizers for auto-mixed-precision. When level is O1(amp), the decorate will do nothing.
92
    When level is O2(pure float16/bfloat16), the decorate will cast all parameters of models to float16/bfloat16, except BatchNorm and LayerNorm.
93

94
    Commonly, it is used together with `auto_cast` to achieve Pure float16/bfloat16 in imperative mode.
95 96 97 98

    Args:
        models(Layer|list of Layer, optional): The defined models by user, models must be either a single model or a list of models. Default is None.
        optimizers(Optimizer|list of Optimizer, optional): The defined optimizers by user, optimizers must be either a single optimizer or a list of optimizers. Default is None.
99
        level(str, optional): Auto mixed precision level. Accepted values are "O1" and "O2": O1 represent mixed precision, the decorator will do nothing;
100 101
             O2 represent Pure float16/bfloat16, the decorator will cast all parameters of models to float16/bfloat16, except BatchNorm and LayerNorm. Default is O1(amp)
        dtype(str, optional): Whether to use 'float16' or 'bfloat16'. Default is 'float16'.
102
        master_weight(bool, optinal): For level='O2', whether to use multi-precision during weight updating. If master_weight is None, in O2 level optimizer will use multi-precision. Default is None.
103
        save_dtype(float, optional): The save model parameter dtype when use `paddle.save` or `paddle.jit.save`,it should be float16, bfloat16, float32, float64 or None.
104 105 106 107
             The save_dtype will not change model parameters dtype, it just change the state_dict dtype. When save_dtype is None, the save dtype is same as model dtype. Default is None.

    Examples:

108
     .. code-block:: python
109 110 111 112 113 114

        # required: gpu
        # Demo1: single model and optimizer:
        import paddle

        model = paddle.nn.Conv2D(3, 2, 3, bias_attr=False)
115
        optimizer = paddle.optimizer.SGD(parameters=model.parameters())
116

117
        model, optimizer = paddle.amp.decorate(models=model, optimizers=optimizer, level='O2')
118 119 120 121 122 123

        data = paddle.rand([10, 3, 32, 32])

        with paddle.amp.auto_cast(enable=True, custom_white_list=None, custom_black_list=None, level='O2'):
            output = model(data)
            print(output.dtype) # FP16
124

125 126 127 128 129
        # required: gpu
        # Demo2: multi models and optimizers:
        model2 = paddle.nn.Conv2D(3, 2, 3, bias_attr=False)
        optimizer2 = paddle.optimizer.Adam(parameters=model2.parameters())

130
        models, optimizers = paddle.amp.decorate(models=[model, model2], optimizers=[optimizer, optimizer2], level='O2')
131 132

        data = paddle.rand([10, 3, 32, 32])
133

134 135 136 137 138
        with paddle.amp.auto_cast(enable=True, custom_white_list=None, custom_black_list=None, level='O2'):
            output = models[0](data)
            output2 = models[1](data)
            print(output.dtype) # FP16
            print(output2.dtype) # FP16
139

140 141 142 143 144 145 146 147 148 149 150 151
        # required: gpu
        # Demo3: optimizers is None:
        model3 = paddle.nn.Conv2D(3, 2, 3, bias_attr=False)
        optimizer3 = paddle.optimizer.Adam(parameters=model3.parameters())

        model = paddle.amp.decorate(models=model3, level='O2')

        data = paddle.rand([10, 3, 32, 32])

        with paddle.amp.auto_cast(enable=True, custom_white_list=None, custom_black_list=None, level='O2'):
            output = model(data)
            print(output.dtype) # FP16
152
    """
153 154 155
    return amp_decorate(
        models, optimizers, level, dtype, master_weight, save_dtype
    )