# Copyright (c) 2021 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. from __future__ import division from __future__ import print_function import unittest import os import copy import numpy as np import random import socket import paddle import paddle.nn as nn from paddle.fluid.dygraph.nn import Linear import paddle.fluid.core as core from paddle.fluid.framework import _test_eager_guard import paddle.distributed as dist from paddle.fluid.dygraph.parallel import ParallelEnv from paddle.optimizer import SGD from paddle.fluid.initializer import NumpyArrayInitializer from test_parallel_dygraph_dataparallel import get_dist_port_from_flags def init_process_group(strategy=None): nranks = ParallelEnv().nranks rank = ParallelEnv().local_rank is_master = True if rank == 0 else False envs = copy.copy(os.environ.copy()) port = get_dist_port_from_flags() store = paddle.fluid.core.TCPStore("127.0.0.1", port, is_master, nranks) if 'PADDLE_DISTRI_BACKEND' in envs.keys() and envs[ 'PADDLE_DISTRI_BACKEND'] == 'gloo': group = core.ProcessGroupGloo(store, rank, nranks) else: group = core.ProcessGroupNCCL(store, rank, nranks) return group class LinearModel(nn.Layer): def __init__(self, attr_list): super(LinearModel, self).__init__() self._linear1 = paddle.nn.Linear( 50, 30, weight_attr=attr_list[0], bias_attr=False) self._linear2 = paddle.nn.Linear( 30, 10, weight_attr=attr_list[1], bias_attr=False) self._linear3 = paddle.nn.Linear( 10, 10, weight_attr=attr_list[2], bias_attr=False) def forward(self, x): output = self._linear1(x) output = self._linear2(output) output = self._linear3(output) return output class TestDistTraning(unittest.TestCase): def test_multiple_gpus(self): process_group = init_process_group() self.generate_reducer("float32", process_group) if paddle.get_device() != "cpu": self.generate_reducer("float16", process_group) def generate_reducer(self, dtype, process_group): local_rank = ParallelEnv().local_rank np.random.seed(2022 + local_rank) paddle.set_default_dtype(dtype) w_1 = paddle.ParamAttr(initializer=NumpyArrayInitializer( np.random.rand(50, 30).astype(dtype))) w_2 = paddle.ParamAttr(initializer=NumpyArrayInitializer( np.random.rand(30, 10).astype(dtype))) w_3 = paddle.ParamAttr(initializer=NumpyArrayInitializer( np.random.rand(10, 10).astype(dtype))) attr_list = [w_1, w_2, w_3] inp = np.random.rand(10, 50).astype(dtype) # original reducer params_a = self.model_train(attr_list, inp) # refactored reducer in eager mode with _test_eager_guard(): params_b = self.model_train( attr_list, inp, process_group=process_group) for i in range(len(params_a)): np.testing.assert_allclose(params_a[i].numpy(), params_b[i].numpy()) def model_train(self, attr_list, inp, process_group=None): model = LinearModel(attr_list) model = paddle.DataParallel(model, process_group=process_group) optimizer = SGD(learning_rate=0.0003, parameters=model.parameters()) x = paddle.to_tensor(inp) x.stop_gradient = False for step in range(10): y = model(x) loss = y.mean() loss.backward() optimizer.step() optimizer.clear_grad() return model.parameters() class TestCatchErrors1(unittest.TestCase): def test_multiple_gpus(self): linear = paddle.nn.Linear(2, 4) with _test_eager_guard(): self.assertRaises(RuntimeError, paddle.DataParallel, linear) class TestCatchErrors2(unittest.TestCase): def test_multiple_gpus(self): with _test_eager_guard(): linear = paddle.nn.Linear(2, 4) self.assertRaises(RuntimeError, paddle.DataParallel, linear) if __name__ == '__main__': dist.init_parallel_env() unittest.main()