distribute_lookup_table.py 2.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#   Copyright (c) 2018 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.

LOOKUP_TABLE_TYPE = "lookup_table"


18
def find_distributed_lookup_table_inputs(program, table_name):
19 20 21 22 23 24 25 26 27
    """
    Find input variable of distribute lookup table in program.
    We only support one distribute table now.
    Args:
    program(Program): given program, locate distributed lookup table
    table_name(str): given table name that is found beforehand
    Returns:
    inputs
    """
28 29 30 31 32
    local_vars = program.current_block().vars
    inputs = []
    for op in program.global_block().ops:
        if op.type == LOOKUP_TABLE_TYPE:
            if table_name == op.input("W")[0]:
33
                inputs.extend([local_vars[name] for name in op.input("Ids")])
34 35
    return inputs

36

37
def find_distributed_lookup_table_outputs(program, table_name):
38 39 40 41 42 43 44 45 46
    """
    Find output variable of distribute lookup table in program.
    We only support one distribute table now.
    Args:
    program(Program): given program, locate distributed lookup table
    table_name(str): given table name that is found beforehand
    Returns:
    outputs
    """
47 48 49 50 51
    local_vars = program.current_block().vars
    outputs = []
    for op in program.global_block().ops:
        if op.type == LOOKUP_TABLE_TYPE:
            if table_name == op.input("W")[0]:
52
                outputs.extend([local_vars[name] for name in op.output("Out")])
53 54
    return outputs

55

56
def find_distributed_lookup_table(program):
Q
Qiao Longfei 已提交
57 58 59
    """
    Find distribute lookup table in program.
    We only support one distribute table now.
60 61 62 63
    Args:
    program(Program): given program, locate distributed lookup table
    Returns:
    table_name or None
Q
Qiao Longfei 已提交
64
    """
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
    table_name = None

    for op in program.global_block().ops:
        if op.type == LOOKUP_TABLE_TYPE:
            if op.attr('is_distributed') is True:
                if table_name is None:
                    table_name = op.input("W")[0]
                if table_name != op.input("W")[0]:
                    raise RuntimeError("all distributed lookup_table_ops"
                                       " should have only one table")
            else:
                if table_name is not None:
                    assert op.input("W")[0] != table_name

    return table_name