recompute_pass_unittest.py 3.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
# 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.

import random
16 17
import unittest

18
import numpy as np
19
from get_gpt_model import FakeDataset, generate_model
20

21
import paddle
22
from paddle.distributed.fleet import auto
23 24


25
def apply_pass(use_recompute=False, no_recompute_segments=[]):
26 27 28 29 30 31
    strategy = auto.Strategy()
    strategy.auto_mode = "semi"
    strategy.reinit = True
    if use_recompute:
        recompute = strategy.recompute
        recompute.enable = True
32
        recompute.no_recompute_segments = no_recompute_segments
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
    return strategy


def reset_prog():
    paddle.fluid.framework.switch_main_program(paddle.static.Program())
    paddle.fluid.framework.switch_startup_program(paddle.static.Program())


class TestRecomputePass(unittest.TestCase):
    def setUp(self):
        self.rtol = 1e-6
        self.atol = 1e-8
        self.batch_size = 1
        self.batch_num = 10
        self.clip_norm = 0.2
        self.dataset = FakeDataset(self.batch_size * self.batch_num)

    def init(self, engine):
        paddle.seed(2022)
        np.random.seed(2022)
        random.seed(2022)
54
        place = paddle.fluid.CUDAPlace(paddle.distributed.ParallelEnv().dev_id)
55 56
        engine._executor = paddle.static.Executor(place)

57
    def get_engine(self, use_recompute=False, no_recompute_segments=[]):
58 59
        reset_prog()

60
        strategy = apply_pass(use_recompute, no_recompute_segments)
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
        clip = paddle.nn.ClipGradByGlobalNorm(self.clip_norm)
        opt = paddle.optimizer.AdamW(learning_rate=0.00001, grad_clip=clip)
        model, loss = generate_model("mp")

        engine = auto.Engine(model, loss, opt, strategy=strategy)
        self.init(engine)
        return engine

    def check_results(self, ref_losses, check_losses):
        np.testing.assert_allclose(
            ref_losses,
            check_losses,
            rtol=self.rtol,
            atol=self.atol,
            err_msg='pass {} has wrong results!, \nu={}\nv={}\ndiff={}'.format(
76 77 78
                __class__, ref_losses, check_losses, ref_losses - check_losses
            ),
        )
79 80 81 82

    def test_recompute_pass(self):
        # mp2 training
        mp_engine = self.get_engine()
Z
zhaoyingli 已提交
83 84
        history = mp_engine.fit(self.dataset, 3, batch_size=self.batch_size)
        mp_losses = np.array(history.history["loss"])
85 86 87

        # mp2 recompute training
        rc_engine = self.get_engine(True)
Z
zhaoyingli 已提交
88 89
        history = rc_engine.fit(self.dataset, 3, batch_size=self.batch_size)
        rc_losses = np.array(history.history["loss"])
90 91
        self.check_results(mp_losses, rc_losses)

92 93 94 95 96 97 98 99 100 101 102 103
        # mp2 selective recompute training
        rc1_engine = self.get_engine(True, [0])
        history = rc1_engine.fit(self.dataset, 3, batch_size=self.batch_size)
        rc1_losses = np.array(history.history["loss"])
        self.check_results(mp_losses, rc1_losses)

    def test_recompute_pass_error(self):

        with self.assertRaises(AssertionError):
            rc_engine = self.get_engine(True, [2])
            history = rc_engine.fit(self.dataset, 3, batch_size=self.batch_size)

104 105 106

if __name__ == "__main__":
    unittest.main()