test_dlpack.py 5.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 unittest
16

17 18 19 20 21 22 23 24
import numpy as np

import paddle
import paddle.fluid as fluid
import paddle.fluid.core as core


class TestDLPack(unittest.TestCase):
W
Weilong Wu 已提交
25
    def test_dlpack_dygraph(self):
S
Siming Dai 已提交
26
        paddle.disable_static()
27 28 29
        tensor = paddle.to_tensor(np.array([1, 2, 3, 4]).astype('int'))
        dlpack = paddle.utils.dlpack.to_dlpack(tensor)
        out_from_dlpack = paddle.utils.dlpack.from_dlpack(dlpack)
W
wanghuancoder 已提交
30 31
        if paddle.fluid.framework.in_dygraph_mode():
            self.assertTrue(
32 33
                isinstance(out_from_dlpack, paddle.fluid.core.eager.Tensor)
            )
W
wanghuancoder 已提交
34 35
        else:
            self.assertTrue(isinstance(out_from_dlpack, paddle.Tensor))
36 37 38
        np.testing.assert_array_equal(
            np.array(out_from_dlpack), np.array([1, 2, 3, 4]).astype('int')
        )
39

W
Weilong Wu 已提交
40
    def test_dlpack_tensor_larger_than_2dim(self):
S
Siming Dai 已提交
41 42 43 44 45 46
        paddle.disable_static()
        numpy_data = np.random.randn(4, 5, 6)
        t = paddle.to_tensor(numpy_data)
        # TODO: There may be a reference count problem of to_dlpack.
        dlpack = paddle.utils.dlpack.to_dlpack(t)
        out = paddle.utils.dlpack.from_dlpack(dlpack)
47
        np.testing.assert_allclose(numpy_data, out.numpy(), rtol=1e-05)
S
Siming Dai 已提交
48

49 50 51
    def test_dlpack_static(self):
        paddle.enable_static()
        tensor = fluid.create_lod_tensor(
52 53 54 55
            np.array([[1], [2], [3], [4]]).astype('int'),
            [[1, 3]],
            fluid.CPUPlace(),
        )
56 57 58
        dlpack = paddle.utils.dlpack.to_dlpack(tensor)
        out_from_dlpack = paddle.utils.dlpack.from_dlpack(dlpack)
        self.assertTrue(isinstance(out_from_dlpack, fluid.core.Tensor))
59 60
        np.testing.assert_array_equal(
            np.array(out_from_dlpack),
61 62
            np.array([[1], [2], [3], [4]]).astype('int'),
        )
63 64 65 66

        # when build with cuda
        if core.is_compiled_with_cuda():
            gtensor = fluid.create_lod_tensor(
67 68 69 70
                np.array([[1], [2], [3], [4]]).astype('int'),
                [[1, 3]],
                fluid.CUDAPlace(0),
            )
71 72 73
            gdlpack = paddle.utils.dlpack.to_dlpack(gtensor)
            gout_from_dlpack = paddle.utils.dlpack.from_dlpack(gdlpack)
            self.assertTrue(isinstance(gout_from_dlpack, fluid.core.Tensor))
74 75
            np.testing.assert_array_equal(
                np.array(gout_from_dlpack),
76 77
                np.array([[1], [2], [3], [4]]).astype('int'),
            )
78

W
Weilong Wu 已提交
79
    def test_dlpack_dtype_conversion(self):
S
Siming Dai 已提交
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
        paddle.disable_static()
        # DLpack does not explicitly support bool data type.
        dtypes = [
            "float16",
            "float32",
            "float64",
            "int8",
            "int16",
            "int32",
            "int64",
            "uint8",
        ]
        data = np.ones((2, 3, 4))
        for dtype in dtypes:
            x = paddle.to_tensor(data, dtype=dtype)
            dlpack = paddle.utils.dlpack.to_dlpack(x)
            o = paddle.utils.dlpack.from_dlpack(dlpack)
            self.assertEqual(x.dtype, o.dtype)
98
            np.testing.assert_allclose(x.numpy(), o.numpy(), rtol=1e-05)
S
Siming Dai 已提交
99 100 101 102 103

        complex_dtypes = ["complex64", "complex128"]
        for dtype in complex_dtypes:
            x = paddle.to_tensor(
                [[1 + 6j, 2 + 5j, 3 + 4j], [4 + 3j, 5 + 2j, 6 + 1j]],
104 105
                dtype=dtype,
            )
S
Siming Dai 已提交
106 107 108
            dlpack = paddle.utils.dlpack.to_dlpack(x)
            o = paddle.utils.dlpack.from_dlpack(dlpack)
            self.assertEqual(x.dtype, o.dtype)
109
            np.testing.assert_allclose(x.numpy(), o.numpy(), rtol=1e-05)
S
Siming Dai 已提交
110

S
Siming Dai 已提交
111 112 113 114 115 116 117 118
    def test_dlpack_deletion(self):
        # See Paddle issue 47171
        if paddle.is_compiled_with_cuda():
            for i in range(80):
                a = paddle.rand(shape=[1024 * 128, 1024], dtype="float32")
                dlpack = paddle.utils.dlpack.to_dlpack(a)
                b = paddle.utils.dlpack.from_dlpack(dlpack)

D
DesmonDay 已提交
119 120 121 122 123 124
    def test_to_dlpack_for_loop(self):
        # See Paddle issue 50120
        for i in range(10):
            x = paddle.rand([3, 5])
            dlpack = paddle.utils.dlpack.to_dlpack(x)

125 126

class TestRaiseError(unittest.TestCase):
W
Weilong Wu 已提交
127
    def test_from_dlpack_raise_type_error(self):
128 129 130
        self.assertRaises(
            TypeError, paddle.utils.dlpack.from_dlpack, np.zeros(5)
        )
131

W
wanghuancoder 已提交
132
    def test_to_dlpack_raise_type_error(self):
W
Weilong Wu 已提交
133
        self.assertRaises(TypeError, paddle.utils.dlpack.to_dlpack, np.zeros(5))
W
wanghuancoder 已提交
134

135 136 137

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