test_registry.py 1.1 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.
D
dzhwinter 已提交
14 15 16
import unittest

import paddle.v2.fluid as fluid
17 18
import numpy as np
import decorators
D
dzhwinter 已提交
19 20 21


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

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