variable_trans_func.py 2.9 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 16 17 18 19 20
import paddle
from paddle.utils import gast
from paddle.fluid.framework import Variable
from paddle.jit.dy2static.utils import (
    UndefinedVar,
    create_undefined_variable,
21
)
22
from paddle.fluid.layers.utils import map_structure, is_sequence
23

24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
__all__ = [
    'create_bool_as_type',
    'create_fill_constant_node',
    'to_static_variable',
    'create_undefined_var',
]


def create_undefined_var(name):
    func_code = "{} = _jst.UndefinedVar('{}')".format(name, name)
    return gast.parse(func_code).body[0]


def create_fill_constant_node(name, value=0):
    func_code = "{} = paddle.full(shape=[1], ".format(name)
    if isinstance(value, bool):
        func_code += "dtype='bool', fill_value={}, name='{}')".format(
            value, name
        )
        return gast.parse(func_code).body[0]
    if isinstance(value, float):
        func_code += "dtype='float64', fill_value={}, name='{}')".format(
            value, name
        )
        return gast.parse(func_code).body[0]

    if isinstance(value, int):
        func_code += "dtype='int64', fill_value={}, name='{}')".format(
            value, name
        )
        return gast.parse(func_code).body[0]


def to_static_variable(x):
    '''
    Translate a Python Tensor to PaddlePaddle static graph Tensor
    '''
    if isinstance(x, bool):
        return paddle.full(shape=[1], dtype='bool', fill_value=x)
    if isinstance(x, float):
        return paddle.full(shape=[1], dtype='float64', fill_value=x)
    if isinstance(x, int):
        return paddle.full(shape=[1], dtype='int64', fill_value=x)
    if isinstance(x, UndefinedVar) or x is None:
        """
        for early return case, we need a variable to represent None, current we use data_layer_not_check.
        """
        return create_undefined_variable()
    if is_sequence(x):
        return map_structure(to_static_variable, x)
    return x


def create_bool_as_type(x, value=True):
    '''
    Create a bool variable, which type is the same as x.
    '''
    if isinstance(x, Variable):
        return paddle.full(shape=[1], fill_value=value, dtype="bool")
    else:
        return value


def create_bool_node(name, value):
    '''
    Create a assign stmt for name = value .
    '''
    assert isinstance(value, bool)
    node = "{} = {}".format(name, value)
    return gast.parse(node).body[0]