test_auto_parallel_recompute_pass.py 2.0 KB
Newer Older
1
# Copyright (c) 2021 PaddlePaddle Authors. All Rights Reserved.
2
#
3 4 5
# 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
6
#
7
#     http://www.apache.org/licenses/LICENSE-2.0
8
#
9 10 11 12 13 14 15
# 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
T
tianshuo78520a 已提交
16
import sys
17 18
import unittest

19
import numpy as np
T
tianshuo78520a 已提交
20 21

sys.path.append("../legacy_test")
22
from auto_parallel_pass_test_base import AutoPallelPassTestBase
23 24

import paddle
25
from paddle.distributed import fleet
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42


class TestRecomputePass(AutoPallelPassTestBase):
    def init(self):
        if paddle.is_compiled_with_cuda():
            paddle.set_flags({'FLAGS_cudnn_deterministic': 1})
        self.rtol = 1e-6
        self.atol = 1e-8

        rank = paddle.distributed.get_rank()
        paddle.seed(rank + 2021)
        random.seed(rank + 2021)
        np.random.seed(rank + 2021)

    def apply_passes(self):
        dist_strategy = fleet.DistributedStrategy()
        dist_strategy.recompute = True
Z
zhaoyingli 已提交
43
        dist_strategy.recompute_configs = {"checkpoints": ["tmp_3", "tmp_6"]}
44 45 46 47
        dist_strategy.semi_auto = True
        fleet.init(is_collective=True, strategy=dist_strategy)

    def test_bs_8(self):
48 49 50
        self.check_main(
            gpus=[0, 1], batch_size=8, sequence_len=512, vocab_size=1000
        )
51 52

    def get_model(self, place, batch_size, sequence_len, vocab_size):
53 54 55
        return self.get_gpt_model(
            "mp", place, batch_size, sequence_len, vocab_size
        )
56 57 58 59


class TestRecomputePassDP(TestRecomputePass):
    def get_model(self, place, batch_size, sequence_len, vocab_size):
60 61 62
        return self.get_gpt_model(
            "dp", place, batch_size, sequence_len, vocab_size
        )
63 64 65 66


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