test_collective_allreduce_sum.py 1.8 KB
Newer Older
Z
zn 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
#   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.

from __future__ import print_function
import sys
import unittest
import numpy as np
import paddle

from test_collective_base_mlu import TestDistBase

paddle.enable_static()


class TestCAllreduceOp(TestDistBase):
    def _setup_config(self):
        pass

30 31
    def test_allreduce_sum_fp32(self):
        self.check_with_place("collective_allreduce_op.py", "allreduce_sum",
Z
zn 已提交
32 33
                              "float32")

34 35
    def test_allreduce_sum_fp16(self):
        self.check_with_place("collective_allreduce_op.py", "allreduce_sum",
Z
zn 已提交
36 37
                              "float16")

38 39
    def test_allreduce_sum_int32(self):
        self.check_with_place("collective_allreduce_op.py", "allreduce_sum",
Z
zn 已提交
40 41
                              "int32")

42 43
    def test_allreduce_sum_int16(self):
        self.check_with_place("collective_allreduce_op.py", "allreduce_sum",
Z
zn 已提交
44 45
                              "int16")

46 47 48
    def test_allreduce_sum_int8(self):
        self.check_with_place("collective_allreduce_op.py", "allreduce_sum",
                              "int8")
Z
zn 已提交
49

50 51
    def test_allreduce_sum_uint8(self):
        self.check_with_place("collective_allreduce_op.py", "allreduce_sum",
Z
zn 已提交
52 53 54 55 56
                              "uint8")


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