test_variable.py 2.3 KB
Newer Older
D
dzhwinter 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
#  Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserve.
#
#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.
Y
Yu Yang 已提交
14
import unittest
Y
Yu Yang 已提交
15
from paddle.v2.fluid.framework import default_main_program, Program, convert_np_dtype_to_dtype_
Q
Qiao Longfei 已提交
16
import paddle.v2.fluid.core as core
Y
Yu Yang 已提交
17 18 19 20 21 22
import numpy as np


class TestVariable(unittest.TestCase):
    def test_np_dtype_convert(self):
        DT = core.DataType
23
        convert = convert_np_dtype_to_dtype_
Y
Yu Yang 已提交
24 25 26 27 28 29 30 31 32
        self.assertEqual(DT.FP32, convert(np.float32))
        self.assertEqual(DT.FP16, convert("float16"))
        self.assertEqual(DT.FP64, convert("float64"))
        self.assertEqual(DT.INT32, convert("int32"))
        self.assertEqual(DT.INT16, convert("int16"))
        self.assertEqual(DT.INT64, convert("int64"))
        self.assertEqual(DT.BOOL, convert("bool"))
        self.assertRaises(ValueError, lambda: convert("int8"))

Y
Yu Yang 已提交
33
    def test_var(self):
Y
Yu Yang 已提交
34
        b = default_main_program().current_block()
Y
Yu Yang 已提交
35 36
        w = b.create_var(
            dtype="float64", shape=[784, 100], lod_level=0, name="fc.w")
37
        self.assertNotEqual(str(w), "")
F
fengjiayi 已提交
38
        self.assertEqual(core.DataType.FP64, w.dtype)
Y
Yu Yang 已提交
39 40 41 42 43
        self.assertEqual((784, 100), w.shape)
        self.assertEqual("fc.w", w.name)
        self.assertEqual(0, w.lod_level)

        w = b.create_var(name='fc.w')
F
fengjiayi 已提交
44
        self.assertEqual(core.DataType.FP64, w.dtype)
Y
Yu Yang 已提交
45 46 47 48 49 50 51
        self.assertEqual((784, 100), w.shape)
        self.assertEqual("fc.w", w.name)
        self.assertEqual(0, w.lod_level)

        self.assertRaises(ValueError,
                          lambda: b.create_var(name="fc.w", shape=(24, 100)))

Y
Yu Yang 已提交
52 53 54 55 56 57 58
    def test_step_scopes(self):
        prog = Program()
        b = prog.current_block()
        var = b.create_var(
            name='step_scopes', type=core.VarDesc.VarType.STEP_SCOPES)
        self.assertEqual(core.VarDesc.VarType.STEP_SCOPES, var.type)

Y
Yu Yang 已提交
59 60 61

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