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

15
from paddle.jit.dy2static.static_analysis import (
16 17
    AstNodeWrapper,
)
18
from paddle.jit.dy2static.utils import (
19 20
    FunctionNameLivenessAnalysis,
)
21
from paddle.jit.dy2static.variable_trans_func import (
22 23
    create_undefined_var,
)
24
from .base_transformer import (
25 26
    BaseTransformer,
)
27 28 29


class CreateVariableTransformer(BaseTransformer):
30
    """ """
31 32

    def __init__(self, wrapper_root):
33 34 35 36
        assert isinstance(wrapper_root, AstNodeWrapper), (
            "Type of input node should be AstNodeWrapper, but received %s ."
            % type(wrapper_root)
        )
37 38 39 40 41 42 43 44 45 46
        self.root = wrapper_root.node
        FunctionNameLivenessAnalysis(self.root)

    def transform(self):
        """
        Main function to transform AST.
        """
        self.visit(self.root)

    def visit_FunctionDef(self, node):
47
        # attributes = set(filter(lambda x: '.' in x, node.pd_scope.modified_vars()))
48
        self.generic_visit(node)
49 50 51 52 53
        bodys = node.body
        names = sorted(node.pd_scope.created_vars())
        for name in names:
            bodys[0:0] = [create_undefined_var(name)]
        return node