add shape_check for op tests (#21391)
parent
63a5fb4cac
commit
9bb1e3ea16
@ -0,0 +1,25 @@
|
||||
# Copyright (c) 2019 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.
|
||||
|
||||
NOT_CHECK_OP_LIST = [
|
||||
# increment's input must be 1-d and only has one data
|
||||
'increment'
|
||||
]
|
||||
|
||||
NEED_TO_FIX_OP_LIST = [
|
||||
'sequence_scatter', 'log_loss', 'sequence_topk_avg_pooling', 'matmul',
|
||||
'add_position_encoding', 'margin_rank_loss', 'elementwise_pow',
|
||||
'fused_elemwise_activation', 'tree_conv', 'mul',
|
||||
'teacher_student_sigmoid_loss'
|
||||
]
|
Loading…
Reference in new issue