test_assign_value_op.py 3.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.

X
xuwei06 已提交
15
import unittest
16

17
import numpy as np
18
import op_test
19

20
import paddle
21
import paddle.fluid as fluid
22
import paddle.fluid.framework as framework
23
import paddle.fluid.layers as layers
X
xuwei06 已提交
24

25 26
paddle.enable_static()

X
xuwei06 已提交
27 28 29 30 31

class TestAssignValueOp(op_test.OpTest):
    def setUp(self):
        self.op_type = "assign_value"
        self.inputs = {}
32 33 34 35
        self.attrs = {}
        self.init_data()
        self.attrs["shape"] = self.value.shape
        self.attrs["dtype"] = framework.convert_np_dtype_to_dtype_(
36 37
            self.value.dtype
        )
38 39 40
        self.outputs = {"Out": self.value}

    def init_data(self):
41
        self.value = np.random.random(size=(2, 5)).astype(np.float32)
42
        self.attrs["fp32_values"] = [float(v) for v in self.value.flat]
X
xuwei06 已提交
43 44 45 46

    def test_forward(self):
        self.check_output()

47 48 49

class TestAssignValueOp2(TestAssignValueOp):
    def init_data(self):
50
        self.value = np.random.random(size=(2, 5)).astype(np.int32)
51 52 53 54 55
        self.attrs["int32_values"] = [int(v) for v in self.value.flat]


class TestAssignValueOp3(TestAssignValueOp):
    def init_data(self):
56
        self.value = np.random.random(size=(2, 5)).astype(np.int64)
57 58 59
        self.attrs["int64_values"] = [int(v) for v in self.value.flat]


60 61
class TestAssignValueOp4(TestAssignValueOp):
    def init_data(self):
62
        self.value = np.random.choice(a=[False, True], size=(2, 5)).astype(
R
Ryan 已提交
63
            np.bool_
64
        )
W
wanghuancoder 已提交
65
        self.attrs["bool_values"] = [int(v) for v in self.value.flat]
66 67


68 69 70
class TestAssignApi(unittest.TestCase):
    def setUp(self):
        self.init_dtype()
71
        self.value = (-100 + 200 * np.random.random(size=(2, 5))).astype(
72 73 74 75 76 77 78
            self.dtype
        )
        self.place = (
            fluid.CUDAPlace(0)
            if fluid.is_compiled_with_cuda()
            else fluid.CPUPlace()
        )
79 80 81 82

    def init_dtype(self):
        self.dtype = "float32"

X
xuwei06 已提交
83
    def test_assign(self):
84 85
        main_program = fluid.Program()
        with fluid.program_guard(main_program):
86
            x = paddle.tensor.create_tensor(dtype=self.dtype)
87 88 89 90
            layers.assign(input=self.value, output=x)

        exe = fluid.Executor(self.place)
        [fetched_x] = exe.run(main_program, feed={}, fetch_list=[x])
91
        np.testing.assert_array_equal(fetched_x, self.value)
92 93 94 95 96 97 98 99 100 101 102
        self.assertEqual(fetched_x.dtype, self.value.dtype)


class TestAssignApi2(TestAssignApi):
    def init_dtype(self):
        self.dtype = "int32"


class TestAssignApi3(TestAssignApi):
    def init_dtype(self):
        self.dtype = "int64"
X
xuwei06 已提交
103 104


105 106 107
class TestAssignApi4(TestAssignApi):
    def setUp(self):
        self.init_dtype()
108
        self.value = np.random.choice(a=[False, True], size=(2, 5)).astype(
R
Ryan 已提交
109
            np.bool_
110 111 112 113 114 115
        )
        self.place = (
            fluid.CUDAPlace(0)
            if fluid.is_compiled_with_cuda()
            else fluid.CPUPlace()
        )
116 117 118 119 120

    def init_dtype(self):
        self.dtype = "bool"


X
xuwei06 已提交
121 122
if __name__ == '__main__':
    unittest.main()