test_lod_append_op.py 3.6 KB
Newer Older
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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
#Copyright (c) 2020 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 unittest
import numpy as np
import paddle.fluid as fluid
import paddle.fluid.layers as layers
import paddle.fluid.core as core
from paddle.fluid import compiler, Program, program_guard
from paddle.fluid.op import Operator
from paddle.fluid.backward import append_backward


class TestLoDAppendAPI(unittest.TestCase):
    def test_api(self, use_cuda=False):
        main_program = Program()
        with fluid.program_guard(main_program):
            x = fluid.layers.data(name='x', shape=[6], dtype='float32')
            result = fluid.layers.lod_append(x, [0, 2, 6])

            x_i = np.array([1.0, 1.0, 1.0, 1.0, 1.0, 1.0]).astype("float32")

            for use_cuda in [False, True]:
                if use_cuda and not fluid.core.is_compiled_with_cuda():
                    return
                place = fluid.CUDAPlace(0) if use_cuda else fluid.CPUPlace()
                exe = fluid.Executor(place)
                [out] = exe.run(fluid.default_main_program(),
                                feed={'x': x_i},
                                fetch_list=[result],
                                return_numpy=False)
                self.assertEqual(out.recursive_sequence_lengths(), [[2, 4]])


class TestLodAppendOpError(unittest.TestCase):
    def test_errors(self):
        with program_guard(Program()):

            def test_x_Variable():
                # The input(x) must be Variable.
                x1 = np.array([0.9383, 0.1983, 3.2, 1.2]).astype("float64")
                level1 = [0, 2, 4]
                fluid.layers.lod_append(x1, level1)
                self.assertRaises(TypeError, fluid.layers.lod_append, x1,
                                  level1)

            def test_level_Variable():
                # The input(level) must be Variable or list.
                x2 = fluid.layers.data(name='x2', shape=[4], dtype='float32')
                level2 = 2
                fluid.layers.lod_append(x2, level2)
                self.assertRaises(TypeError, fluid.layers.lod_append, x2,
                                  level2)

            def test_x_dtype():
                for dtype in ["bool", "float16"]:
                    x3 = fluid.layers.data(
                        name='x3_' + dtype, shape=[4], dtype=dtype)
                    level3 = fluid.layers.data(
                        name='level3', shape=[4], dtype='int32', lod_level=2)
                    self.assertRaises(TypeError, fluid.layers.lod_append, x3,
                                      level3)

            def test_level_dtype():
                for dtype in ["bool", "float16", "float32", "float64", "int64"]:
                    x4 = fluid.layers.data(
                        name='x4_' + dtype, shape=[4], dtype='float32')
                    level4 = fluid.layers.data(
                        name='level4', shape=[4], dtype=dtype, lod_level=0)
                    self.assertRaises(TypeError, fluid.layers.lod_append, x4,
                                      level4)


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