dist_sharding_save.py 3.3 KB
Newer Older
J
JZ-LIANG 已提交
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 16
import os

17
from dist_mnist import cnn_model  # noqa: F401
TaoTao Li's avatar
TaoTao Li 已提交
18
from test_dist_base import dump_output
19 20

import paddle
21 22 23
from paddle import fluid
from paddle.distributed.fleet.base import role_maker
from paddle.distributed.fleet.meta_optimizers import sharding
J
JZ-LIANG 已提交
24 25 26 27 28

# Fix seed for test
fluid.default_startup_program().random_seed = 1
fluid.default_main_program().random_seed = 1

J
JZ-LIANG 已提交
29

J
JZ-LIANG 已提交
30
def runtime_main():
31
    from paddle.distributed import fleet
J
JZ-LIANG 已提交
32 33 34 35 36 37 38 39

    # model definition
    train_prog = paddle.fluid.Program()
    startup_prog = paddle.fluid.Program()
    role = role_maker.PaddleCloudRoleMaker(is_collective=True)
    fleet.init(role)
    with fluid.program_guard(train_prog, startup_prog):
        with fluid.unique_name.guard():
G
GGBond8488 已提交
40 41
            input_x = paddle.static.data(
                name="x", shape=[-1, 32], dtype='float32'
42
            )
G
GGBond8488 已提交
43
            input_y = paddle.static.data(name="y", shape=[-1, 1], dtype='int64')
J
JZ-LIANG 已提交
44

C
Charles-hit 已提交
45 46 47 48
            fc_1 = paddle.static.nn.fc(x=input_x, size=64, activation='tanh')
            fc_2 = paddle.static.nn.fc(x=fc_1, size=256, activation='tanh')
            prediction = paddle.static.nn.fc(
                x=[fc_2], size=2, activation='softmax'
49
            )
50 51 52 53 54
            cost = paddle.nn.functional.cross_entropy(
                input=prediction,
                label=input_y,
                reduction='none',
                use_softmax=False,
55
            )
56
            avg_cost = paddle.mean(x=cost)
J
JZ-LIANG 已提交
57 58 59

            strategy = paddle.distributed.fleet.DistributedStrategy()
            strategy.sharding = True
60 61 62 63 64
            strategy.sharding_configs = {
                "sharding_segment_strategy": "segment_broadcast_MB",
                "segment_broadcast_MB": 0.2,
                "sharding_degree": 2,
            }
J
JZ-LIANG 已提交
65

66 67 68 69 70 71
            optimizer = paddle.fluid.optimizer.Momentum(
                learning_rate=0.01, momentum=0.9
            )
            optimizer = fleet.distributed_optimizer(
                optimizer, strategy=strategy
            )
J
JZ-LIANG 已提交
72 73 74 75 76 77 78
            optimizer.minimize(avg_cost)

    # execution
    device_id = int(os.getenv("FLAGS_selected_gpus", "0"))
    place = fluid.CUDAPlace(device_id)
    exe = fluid.Executor(place)
    exe.run(startup_prog)
J
JZ-LIANG 已提交
79
    dirname = "./ut_sharding_save_model"
80 81 82
    sharding.utils.save_persistables(
        exe, dirname, main_program=train_prog, filename=None
    )
J
JZ-LIANG 已提交
83

J
JZ-LIANG 已提交
84
    out_losses = []
TaoTao Li's avatar
TaoTao Li 已提交
85
    dump_output(out_losses)
J
JZ-LIANG 已提交
86

J
JZ-LIANG 已提交
87

J
JZ-LIANG 已提交
88
if __name__ == "__main__":
C
co63oc 已提交
89
    # NOTE(liangjianzhong): dist unittest should be implemented using runtime_main in test_dist_base.py
90
    # but the runtime_main in test_dist_base.py use the fleet, DistributedStrategy from
meteor135's avatar
meteor135 已提交
91
    # paddle.incubate.distributed.fleet.collective which is not support by sharding (paddle.distributed.fleet).
J
JZ-LIANG 已提交
92 93 94
    # this should be update in future.
    # runtime_main(TestDistMnist2x2)
    runtime_main()