test_tensor.py 5.5 KB
Newer Older
1
#   Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
D
dzhwinter 已提交
2
#
D
dzhwinter 已提交
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
D
dzhwinter 已提交
6
#
D
dzhwinter 已提交
7
#     http://www.apache.org/licenses/LICENSE-2.0
D
dzhwinter 已提交
8
#
D
dzhwinter 已提交
9 10 11 12 13 14
# 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 __future__ import print_function

17
import paddle.fluid.core as core
Y
Yu Yang 已提交
18 19 20 21
import unittest
import numpy


22
class TestTensor(unittest.TestCase):
23
    def test_int_tensor(self):
Y
Yu Yang 已提交
24
        scope = core.Scope()
D
dongzhihong 已提交
25
        var = scope.var("test_tensor")
Q
qijun 已提交
26
        place = core.CPUPlace()
Q
qijun 已提交
27

Y
Yu Yang 已提交
28 29
        tensor = var.get_tensor()

Y
yuyang18 已提交
30
        tensor._set_dims([1000, 784])
Y
yuyang18 已提交
31
        tensor._alloc_int(place)
Y
Yu Yang 已提交
32 33 34 35
        tensor_array = numpy.array(tensor)
        self.assertEqual((1000, 784), tensor_array.shape)
        tensor_array[3, 9] = 1
        tensor_array[19, 11] = 2
Q
qijun 已提交
36
        tensor.set(tensor_array, place)
Y
Yu Yang 已提交
37 38

        tensor_array_2 = numpy.array(tensor)
39 40
        self.assertEqual(1, tensor_array_2[3, 9])
        self.assertEqual(2, tensor_array_2[19, 11])
Y
Yu Yang 已提交
41

42
    def test_float_tensor(self):
Y
Yu Yang 已提交
43
        scope = core.Scope()
D
dongzhihong 已提交
44
        var = scope.var("test_tensor")
Q
qijun 已提交
45
        place = core.CPUPlace()
Q
qijun 已提交
46

Y
Yu Yang 已提交
47 48
        tensor = var.get_tensor()

Y
yuyang18 已提交
49
        tensor._set_dims([1000, 784])
Y
yuyang18 已提交
50
        tensor._alloc_float(place)
Y
Yu Yang 已提交
51 52 53 54 55

        tensor_array = numpy.array(tensor)
        self.assertEqual((1000, 784), tensor_array.shape)
        tensor_array[3, 9] = 1.0
        tensor_array[19, 11] = 2.0
Q
qijun 已提交
56
        tensor.set(tensor_array, place)
Y
Yu Yang 已提交
57 58 59 60 61

        tensor_array_2 = numpy.array(tensor)
        self.assertAlmostEqual(1.0, tensor_array_2[3, 9])
        self.assertAlmostEqual(2.0, tensor_array_2[19, 11])

62
    def test_int_lod_tensor(self):
63
        place = core.CPUPlace()
64
        scope = core.Scope()
D
dongzhihong 已提交
65
        var_lod = scope.var("test_lod_tensor")
66 67
        lod_tensor = var_lod.get_tensor()

Y
yuyang18 已提交
68
        lod_tensor._set_dims([4, 4, 6])
Y
yuyang18 已提交
69
        lod_tensor._alloc_int(place)
70 71 72 73
        array = numpy.array(lod_tensor)
        array[0, 0, 0] = 3
        array[3, 3, 5] = 10
        lod_tensor.set(array, place)
74
        lod_tensor.set_recursive_sequence_lengths([[2, 2]])
75 76 77 78

        lod_v = numpy.array(lod_tensor)
        self.assertTrue(numpy.alltrue(array == lod_v))

79 80
        lod = lod_tensor.recursive_sequence_lengths()
        self.assertEqual(2, lod[0][0])
81 82 83
        self.assertEqual(2, lod[0][1])

    def test_float_lod_tensor(self):
84
        place = core.CPUPlace()
85
        scope = core.Scope()
D
dongzhihong 已提交
86
        var_lod = scope.var("test_lod_tensor")
87 88

        lod_tensor = var_lod.get_tensor()
Y
yuyang18 已提交
89
        lod_tensor._set_dims([5, 2, 3, 4])
Y
yuyang18 已提交
90
        lod_tensor._alloc_float(place)
91 92 93

        tensor_array = numpy.array(lod_tensor)
        self.assertEqual((5, 2, 3, 4), tensor_array.shape)
94 95
        tensor_array[0, 0, 0, 0] = 1.0
        tensor_array[0, 0, 0, 1] = 2.0
96 97 98 99 100
        lod_tensor.set(tensor_array, place)

        lod_v = numpy.array(lod_tensor)
        self.assertAlmostEqual(1.0, lod_v[0, 0, 0, 0])
        self.assertAlmostEqual(2.0, lod_v[0, 0, 0, 1])
101
        self.assertEqual(len(lod_tensor.recursive_sequence_lengths()), 0)
102

103 104 105
        lod_py = [[2, 1], [1, 2, 2]]
        lod_tensor.set_recursive_sequence_lengths(lod_py)
        lod = lod_tensor.recursive_sequence_lengths()
106 107 108 109
        self.assertListEqual(lod_py, lod)

    def test_lod_tensor_init(self):
        place = core.CPUPlace()
110
        lod_py = [[2, 1], [1, 2, 2]]
D
dzhwinter 已提交
111
        lod_tensor = core.LoDTensor()
112

Y
yuyang18 已提交
113
        lod_tensor._set_dims([5, 2, 3, 4])
114
        lod_tensor.set_recursive_sequence_lengths(lod_py)
Y
yuyang18 已提交
115
        lod_tensor._alloc_float(place)
D
dzhwinter 已提交
116 117 118 119 120 121 122 123
        tensor_array = numpy.array(lod_tensor)
        tensor_array[0, 0, 0, 0] = 1.0
        tensor_array[0, 0, 0, 1] = 2.0
        lod_tensor.set(tensor_array, place)

        lod_v = numpy.array(lod_tensor)
        self.assertAlmostEqual(1.0, lod_v[0, 0, 0, 0])
        self.assertAlmostEqual(2.0, lod_v[0, 0, 0, 1])
124
        self.assertListEqual(lod_py, lod_tensor.recursive_sequence_lengths())
D
dzhwinter 已提交
125 126 127 128 129

    def test_lod_tensor_gpu_init(self):
        if not core.is_compiled_with_cuda():
            return
        place = core.CUDAPlace(0)
130
        lod_py = [[2, 1], [1, 2, 2]]
D
dzhwinter 已提交
131 132
        lod_tensor = core.LoDTensor()

Y
yuyang18 已提交
133
        lod_tensor._set_dims([5, 2, 3, 4])
134
        lod_tensor.set_recursive_sequence_lengths(lod_py)
Y
yuyang18 已提交
135
        lod_tensor._alloc_float(place)
136 137 138 139
        tensor_array = numpy.array(lod_tensor)
        tensor_array[0, 0, 0, 0] = 1.0
        tensor_array[0, 0, 0, 1] = 2.0
        lod_tensor.set(tensor_array, place)
140

141
        lod_v = numpy.array(lod_tensor)
142 143
        self.assertAlmostEqual(1.0, lod_v[0, 0, 0, 0])
        self.assertAlmostEqual(2.0, lod_v[0, 0, 0, 1])
144
        self.assertListEqual(lod_py, lod_tensor.recursive_sequence_lengths())
145

Q
Qiao Longfei 已提交
146 147 148 149 150 151 152
    def test_empty_tensor(self):
        place = core.CPUPlace()
        scope = core.Scope()
        var = scope.var("test_tensor")

        tensor = var.get_tensor()

Y
yuyang18 已提交
153
        tensor._set_dims([0, 1])
Y
yuyang18 已提交
154
        tensor._alloc_float(place)
Q
Qiao Longfei 已提交
155 156 157 158 159 160

        tensor_array = numpy.array(tensor)
        self.assertEqual((0, 1), tensor_array.shape)

        if core.is_compiled_with_cuda():
            gpu_place = core.CUDAPlace(0)
Y
yuyang18 已提交
161
            tensor._alloc_float(gpu_place)
Q
Qiao Longfei 已提交
162 163 164
            tensor_array = numpy.array(tensor)
            self.assertEqual((0, 1), tensor_array.shape)

Y
Yu Yang 已提交
165 166 167

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