tests.py 1.6 KB
Newer Older
1
# Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
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
6
#
7
#     http://www.apache.org/licenses/LICENSE-2.0
8
#
9 10 11 12 13 14 15
# 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 re
16 17

from type_mapping import attr_types_map, input_types_map, output_type_map
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40


# tests for typename
def is_input(s):
    return s in input_types_map


def is_attr(s):
    return s in attr_types_map


def is_output(s):
    return s in output_type_map


def is_vec(s):
    return s.endswith("[]")


def is_scalar(s):
    return re.match(r"Scalar(\(\w+\))*", s) is not None


41 42 43 44 45 46 47 48
def is_intarray(s):
    return s == 'IntArray'


def is_datatype(s):
    return s == 'DataType'


49 50 51 52
def is_initializer_list(s):
    return s == "{}"


53 54
def is_base_op(op):
    return "kernel" in op and "infer_meta" in op
55 56


J
Jiabin Yang 已提交
57 58 59 60
def is_composite_op(op):
    return "composite" in op


61 62
def supports_selected_rows_kernel(op):
    return is_base_op(op) and len(op["kernel"]["func"]) == 2
63 64


65 66
def supports_inplace(op):
    return op['inplace'] is not None
67 68


69 70
def supports_no_need_buffer(op):
    for input in op["inputs"]:
71 72 73
        if input["no_need_buffer"]:
            return True
    return False
74 75 76 77


def is_tensor_list(s):
    return s == 'Tensor[]'