!5763 fix bugs of op Diag, DepthwiseConv2dNative, DataFormatDimMap in API and add register info for AdamApplyOneAssign, AdamApplyOneWithDecayAssign
Merge pull request !5763 from lihongkang/lhk_masterpull/5763/MERGE
commit
e774e73b36
@ -0,0 +1,53 @@
|
||||
# Copyright 2020 Huawei Technologies Co., Ltd
|
||||
#
|
||||
# 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.
|
||||
# ============================================================================
|
||||
|
||||
"""AdamApplyOneAssign op"""
|
||||
from mindspore.ops.op_info_register import op_info_register, TBERegOp, DataType
|
||||
|
||||
adam_apply_one_assign_op_info = TBERegOp("AdamApplyOneAssign") \
|
||||
.fusion_type("OPAQUE") \
|
||||
.async_flag(False) \
|
||||
.binfile_name("adam_apply_one_assign.so") \
|
||||
.compute_cost(10) \
|
||||
.kernel_name("adam_apply_one_assign") \
|
||||
.partial_flag(True) \
|
||||
.input(0, "input0", False, "required", "all") \
|
||||
.input(1, "input1", False, "required", "all") \
|
||||
.input(2, "input2", False, "required", "all") \
|
||||
.input(3, "input3", False, "required", "all") \
|
||||
.input(4, "input4", False, "required", "all") \
|
||||
.input(5, "mul0_x", False, "required", "all") \
|
||||
.input(6, "mul1_x", False, "required", "all") \
|
||||
.input(7, "mul2_x", False, "required", "all") \
|
||||
.input(8, "mul3_x", False, "required", "all") \
|
||||
.input(9, "add2_y", False, "required", "all") \
|
||||
.output(0, "output0", True, "required", "all") \
|
||||
.output(1, "output1", True, "required", "all") \
|
||||
.output(2, "output2", True, "required", "all") \
|
||||
.dtype_format(DataType.F16_Default, DataType.F16_Default, DataType.F16_Default, DataType.F16_Default,
|
||||
DataType.F16_Default, DataType.F16_Default, DataType.F16_Default, DataType.F16_Default,
|
||||
DataType.F16_Default, DataType.F16_Default, DataType.F16_Default, DataType.F16_Default,
|
||||
DataType.F16_Default) \
|
||||
.dtype_format(DataType.F32_Default, DataType.F32_Default, DataType.F32_Default, DataType.F32_Default,
|
||||
DataType.F32_Default, DataType.F32_Default, DataType.F32_Default, DataType.F32_Default,
|
||||
DataType.F32_Default, DataType.F32_Default, DataType.F32_Default, DataType.F32_Default,
|
||||
DataType.F32_Default) \
|
||||
.get_op_info()
|
||||
|
||||
|
||||
@op_info_register(adam_apply_one_assign_op_info)
|
||||
def _adam_apply_one_assign_tbe():
|
||||
"""AdamApplyOneAssign TBE register"""
|
||||
return
|
@ -0,0 +1,54 @@
|
||||
# Copyright 2020 Huawei Technologies Co., Ltd
|
||||
#
|
||||
# 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.
|
||||
# ============================================================================
|
||||
|
||||
"""AdamApplyOneWithDecayAssign op"""
|
||||
from mindspore.ops.op_info_register import op_info_register, TBERegOp, DataType
|
||||
|
||||
adam_apply_one_with_decay_assign_op_info = TBERegOp("AdamApplyOneWithDecayAssign") \
|
||||
.fusion_type("OPAQUE") \
|
||||
.async_flag(False) \
|
||||
.binfile_name("adam_apply_one_with_decay_assign.so") \
|
||||
.compute_cost(10) \
|
||||
.kernel_name("adam_apply_one_with_decay_assign") \
|
||||
.partial_flag(True) \
|
||||
.input(0, "input0", False, "required", "all") \
|
||||
.input(1, "input1", False, "required", "all") \
|
||||
.input(2, "input2", False, "required", "all") \
|
||||
.input(3, "input3", False, "required", "all") \
|
||||
.input(4, "input4", False, "required", "all") \
|
||||
.input(5, "mul0_x", False, "required", "all") \
|
||||
.input(6, "mul1_x", False, "required", "all") \
|
||||
.input(7, "mul2_x", False, "required", "all") \
|
||||
.input(8, "mul3_x", False, "required", "all") \
|
||||
.input(9, "mul4_x", False, "required", "all") \
|
||||
.input(10, "add2_y", False, "required", "all") \
|
||||
.output(0, "output0", True, "required", "all") \
|
||||
.output(1, "output1", True, "required", "all") \
|
||||
.output(2, "output2", True, "required", "all") \
|
||||
.dtype_format(DataType.F16_Default, DataType.F16_Default, DataType.F16_Default, DataType.F16_Default,
|
||||
DataType.F16_Default, DataType.F16_Default, DataType.F16_Default, DataType.F16_Default,
|
||||
DataType.F16_Default, DataType.F16_Default, DataType.F16_Default, DataType.F16_Default,
|
||||
DataType.F16_Default, DataType.F16_Default) \
|
||||
.dtype_format(DataType.F32_Default, DataType.F32_Default, DataType.F32_Default, DataType.F32_Default,
|
||||
DataType.F32_Default, DataType.F32_Default, DataType.F32_Default, DataType.F32_Default,
|
||||
DataType.F32_Default, DataType.F32_Default, DataType.F32_Default, DataType.F32_Default,
|
||||
DataType.F32_Default, DataType.F32_Default) \
|
||||
.get_op_info()
|
||||
|
||||
|
||||
@op_info_register(adam_apply_one_with_decay_assign_op_info)
|
||||
def _adam_apply_one_with_decay_assign_tbe():
|
||||
"""AdamApplyOneWithDecayAssign TBE register"""
|
||||
return
|
Loading…
Reference in new issue