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

D
dzhwinter 已提交
15 16
import unittest

17
import numpy as np
18
from decorator_helper import prog_scope
D
dzhwinter 已提交
19

20 21 22
import paddle
import paddle.fluid as fluid

D
dzhwinter 已提交
23 24

class TestRegistry(unittest.TestCase):
25
    @prog_scope()
D
dzhwinter 已提交
26
    def test_registry_layer(self):
G
GGBond8488 已提交
27
        x = paddle.static.data(name='X', shape=[-1, 10, 10], dtype='float32')
28
        output = paddle.mean(x)
29

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