test_compiled_program.py 4.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#   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.

import unittest
16

17
import numpy as np
18 19 20
from simple_nets import simple_fc_net
from test_imperative_base import new_program_scope

L
Leo Chen 已提交
21
import paddle
22 23 24 25 26 27 28 29
import paddle.fluid as fluid
from paddle.fluid import core


class TestCompiledProgram(unittest.TestCase):
    def setUp(self):
        self.seed = 100
        self.img = np.random.random(size=(16, 784)).astype('float32')
30 31 32
        self.label = np.random.randint(
            low=0, high=10, size=[16, 1], dtype=np.int64
        )
33
        with new_program_scope():
C
cnn 已提交
34
            paddle.seed(self.seed)
L
Leo Chen 已提交
35
            paddle.framework.random._manual_program_seed(self.seed)
36 37 38 39 40
            place = (
                fluid.CUDAPlace(0)
                if core.is_compiled_with_cuda()
                else fluid.CPUPlace()
            )
41 42 43 44 45
            exe = fluid.Executor(place)

            loss = simple_fc_net()
            exe.run(fluid.default_startup_program())

46 47 48 49 50
            (loss_data,) = exe.run(
                fluid.default_main_program(),
                feed={"image": self.img, "label": self.label},
                fetch_list=[loss.name],
            )
51 52 53 54
            self.loss = loss_data[0]

    def test_compiled_program_base(self):
        with new_program_scope():
C
cnn 已提交
55
            paddle.seed(self.seed)
L
Leo Chen 已提交
56
            paddle.framework.random._manual_program_seed(self.seed)
57 58 59 60 61
            place = (
                fluid.CUDAPlace(0)
                if core.is_compiled_with_cuda()
                else fluid.CPUPlace()
            )
62 63 64 65 66 67
            exe = fluid.Executor(place)

            loss = simple_fc_net()
            exe.run(fluid.default_startup_program())
            compiled_prog = fluid.CompiledProgram(fluid.default_main_program())

68 69 70 71 72
            (loss_data,) = exe.run(
                compiled_prog,
                feed={"image": self.img, "label": self.label},
                fetch_list=[loss.name],
            )
73
            np.testing.assert_array_equal(loss_data[0], self.loss)
74 75 76 77 78 79 80


class TestCompiledProgramError(unittest.TestCase):
    def test_program_or_graph_error(self):
        self.assertRaises(TypeError, fluid.CompiledProgram, "program")

    def build_simple_model(self):
G
GGBond8488 已提交
81 82
        img = paddle.static.data(
            name='image', shape=[-1, 1, 28, 28], dtype='float32'
83
        )
G
GGBond8488 已提交
84
        label = paddle.static.data(name='label', shape=[-1, 1], dtype='int64')
C
Charles-hit 已提交
85
        prediction = paddle.static.nn.fc(x=img, size=10, activation='softmax')
86 87 88
        loss = paddle.nn.functional.cross_entropy(
            input=prediction, label=label, reduction='none', use_softmax=False
        )
89
        avg_loss = paddle.mean(loss)
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119

    def compile_program(self):
        with fluid.program_guard(fluid.Program()):
            # build model
            self.build_simple_model()
            # compile program
            program = fluid.default_main_program()
            compiled_program = fluid.CompiledProgram(program)
            scope = fluid.global_scope()
            place = fluid.CPUPlace()
            compiled_program._compile(scope, place)
            return compiled_program, scope, place

    def test_compile_scope_error(self):
        compiled_program, _, place = self.compile_program()
        new_scope = core.Scope()
        with self.assertRaises(ValueError):
            compiled_program._compile(new_scope, place)

    def test_compile_place_error(self):
        # need create different place
        if core.is_compiled_with_cuda():
            compiled_program, scope, _ = self.compile_program()
            new_place = fluid.CUDAPlace(0)
            with self.assertRaises(ValueError):
                compiled_program._compile(scope, new_place)


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