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

from __future__ import print_function
D
dzhwinter 已提交
16 17
import unittest

18
import paddle.fluid as fluid
19
import numpy as np
20
from decorator_helper import prog_scope
D
dzhwinter 已提交
21 22 23


class TestRegistry(unittest.TestCase):
24
    @prog_scope()
D
dzhwinter 已提交
25 26
    def test_registry_layer(self):
        x = fluid.layers.data(name='X', shape=[10, 10], dtype='float32')
Y
Yu Yang 已提交
27
        output = fluid.layers.mean(x)
28

D
dzhwinter 已提交
29 30 31
        place = fluid.CPUPlace()
        exe = fluid.Executor(place)
        X = np.random.random((10, 10)).astype("float32")
32
        mean_out = exe.run(feed={"X": X}, fetch_list=[output])
33
        self.assertAlmostEqual(np.mean(X), mean_out[0], delta=1e-5)