collective_sendrecv_api.py 3.5 KB
Newer Older
L
lilong12 已提交
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
from test_collective_api_base import TestCollectiveAPIRunnerBase, runtime_main

L
lilong12 已提交
17
import paddle
18 19
from paddle import fluid, framework
from paddle.fluid import data_feeder
L
lilong12 已提交
20 21 22 23

paddle.enable_static()


24 25 26 27 28 29 30 31 32 33 34 35 36 37
def send_new(tensor, dst, group=None, sync_op=True):
    op_type = 'p_send'
    data_feeder.check_variable_and_dtype(
        tensor,
        'tensor',
        [
            'float16',
            'float32',
            'float64',
            'int32',
            'int64',
            'int8',
            'uint8',
            'bool',
38
            'uint16',
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
        ],
        op_type,
    )

    ring_id = 0 if group is None else group.id
    helper = framework.LayerHelper(op_type, **locals())
    helper.append_op(
        type=op_type,
        inputs={'x': [tensor]},
        attrs={
            'ring_id': ring_id,
            'peer': dst,
            'dynamic_shape': True,
        },
    )
    return None


def recv_new(tensor, src, group=None, sync_op=True, dtype='float32'):
    op_type = 'p_recv'
    data_feeder.check_variable_and_dtype(
        tensor,
        'tensor',
        [
            'float16',
            'float32',
            'float64',
            'int32',
            'int64',
            'int8',
            'uint8',
            'bool',
71
            'uint16',
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
        ],
        op_type,
    )
    ring_id = 0 if group is None else group.id
    helper = framework.LayerHelper(op_type, **locals())
    helper.append_op(
        type=op_type,
        outputs={'out': [tensor]},
        attrs={
            'ring_id': ring_id,
            'peer': src,
            'dynamic_shape': True,
            'out_shape': tensor.shape,
            'dtype': fluid.framework.convert_np_dtype_to_dtype_(dtype),
        },
    )
    return None


L
lilong12 已提交
91 92 93 94 95 96
class TestCollectiveSendRecvAPI(TestCollectiveAPIRunnerBase):
    def __init__(self):
        self.global_ring_id = 0

    def get_model(self, main_prog, startup_program, rank):
        with fluid.program_guard(main_prog, startup_program):
G
GGBond8488 已提交
97
            tindata = paddle.static.data(
98 99 100 101
                name="tindata",
                shape=[10, 1000],
                dtype='float32',
            )
L
lilong12 已提交
102 103 104 105 106 107
            if rank == 0:
                paddle.distributed.send(tindata, dst=1)
            else:
                paddle.distributed.recv(tindata, src=0)
            return [tindata]

108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
    def get_model_new(
        self,
        main_prog,
        startup_program,
        rank,
        dtype='float32',
        reduce_type=None,
    ):
        with fluid.program_guard(main_prog, startup_program):
            tindata = paddle.static.data(
                name="tindata",
                shape=[10, 1000],
                dtype=dtype,
            )
            if rank == 0:
                send_new(tindata, dst=1)
            else:
                recv_new(tindata, src=0, dtype=dtype)
            return [tindata]

L
lilong12 已提交
128 129 130

if __name__ == "__main__":
    runtime_main(TestCollectiveSendRecvAPI, "sendrecv")