tests.py 1.4 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 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
# 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
from type_mapping import input_types_map, attr_types_map, output_type_map


# 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


def is_initializer_list(s):
    return s == "{}"


44 45
def is_base_op(op):
    return "kernel" in op and "infer_meta" in op
46 47


48 49
def supports_selected_rows_kernel(op):
    return is_base_op(op) and len(op["kernel"]["func"]) == 2
50 51


52 53
def supports_inplace(op):
    return op['inplace'] is not None
54 55


56 57
def supports_no_need_buffer(op):
    for input in op["inputs"]:
58 59 60
        if input["no_need_buffer"]:
            return True
    return False