|
|
|
@ -14,208 +14,41 @@
|
|
|
|
|
# ============================================================================
|
|
|
|
|
|
|
|
|
|
"""AdamApplyOneWithDecay op"""
|
|
|
|
|
from mindspore.ops.op_info_register import op_info_register
|
|
|
|
|
from mindspore.ops.op_info_register import op_info_register, TBERegOp, DataType
|
|
|
|
|
|
|
|
|
|
adam_apply_one_with_decay_op_info = TBERegOp("AdamApplyOneWithDecay") \
|
|
|
|
|
.fusion_type("OPAQUE") \
|
|
|
|
|
.async_flag(False) \
|
|
|
|
|
.binfile_name("adam_apply_one_with_decay.so") \
|
|
|
|
|
.compute_cost(10) \
|
|
|
|
|
.kernel_name("adam_apply_one_with_decay") \
|
|
|
|
|
.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", False, "required", "all") \
|
|
|
|
|
.output(1, "output1", False, "required", "all") \
|
|
|
|
|
.output(2, "output2", False, "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("""{
|
|
|
|
|
"op_name": "AdamApplyOneWithDecay",
|
|
|
|
|
"imply_type": "TBE",
|
|
|
|
|
"fusion_type": "OPAQUE",
|
|
|
|
|
"async_flag": false,
|
|
|
|
|
"binfile_name": "adam_apply_one_with_decay.so",
|
|
|
|
|
"compute_cost": 10,
|
|
|
|
|
"kernel_name": "adam_apply_one_with_decay",
|
|
|
|
|
"partial_flag": true,
|
|
|
|
|
"attr": [
|
|
|
|
|
|
|
|
|
|
],
|
|
|
|
|
"inputs": [
|
|
|
|
|
{
|
|
|
|
|
"index": 0,
|
|
|
|
|
"dtype": [
|
|
|
|
|
"float16", "float"
|
|
|
|
|
],
|
|
|
|
|
"format": [
|
|
|
|
|
"DefaultFormat", "DefaultFormat"
|
|
|
|
|
],
|
|
|
|
|
"name": "input0",
|
|
|
|
|
"need_compile": false,
|
|
|
|
|
"param_type": "required",
|
|
|
|
|
"shape": "all"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"index": 1,
|
|
|
|
|
"dtype": [
|
|
|
|
|
"float16", "float"
|
|
|
|
|
],
|
|
|
|
|
"format": [
|
|
|
|
|
"DefaultFormat", "DefaultFormat"
|
|
|
|
|
],
|
|
|
|
|
"name": "input1",
|
|
|
|
|
"need_compile": false,
|
|
|
|
|
"param_type": "required",
|
|
|
|
|
"shape": "all"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"index": 2,
|
|
|
|
|
"dtype": [
|
|
|
|
|
"float16", "float"
|
|
|
|
|
],
|
|
|
|
|
"format": [
|
|
|
|
|
"DefaultFormat", "DefaultFormat"
|
|
|
|
|
],
|
|
|
|
|
"name": "input2",
|
|
|
|
|
"need_compile": false,
|
|
|
|
|
"param_type": "required",
|
|
|
|
|
"shape": "all"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"index": 3,
|
|
|
|
|
"dtype": [
|
|
|
|
|
"float16", "float"
|
|
|
|
|
],
|
|
|
|
|
"format": [
|
|
|
|
|
"DefaultFormat", "DefaultFormat"
|
|
|
|
|
],
|
|
|
|
|
"name": "input3",
|
|
|
|
|
"need_compile": false,
|
|
|
|
|
"param_type": "required",
|
|
|
|
|
"shape": "all"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"index": 4,
|
|
|
|
|
"dtype": [
|
|
|
|
|
"float16", "float"
|
|
|
|
|
],
|
|
|
|
|
"format": [
|
|
|
|
|
"DefaultFormat", "DefaultFormat"
|
|
|
|
|
],
|
|
|
|
|
"name": "input4",
|
|
|
|
|
"need_compile": false,
|
|
|
|
|
"param_type": "required",
|
|
|
|
|
"shape": "all"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"index": 5,
|
|
|
|
|
"dtype": [
|
|
|
|
|
"float16", "float"
|
|
|
|
|
],
|
|
|
|
|
"format": [
|
|
|
|
|
"DefaultFormat", "DefaultFormat"
|
|
|
|
|
],
|
|
|
|
|
"name": "mul0_x",
|
|
|
|
|
"need_compile": false,
|
|
|
|
|
"param_type": "required",
|
|
|
|
|
"shape": "all"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"index": 6,
|
|
|
|
|
"dtype": [
|
|
|
|
|
"float16", "float"
|
|
|
|
|
],
|
|
|
|
|
"format": [
|
|
|
|
|
"DefaultFormat", "DefaultFormat"
|
|
|
|
|
],
|
|
|
|
|
"name": "mul1_x",
|
|
|
|
|
"need_compile": false,
|
|
|
|
|
"param_type": "required",
|
|
|
|
|
"shape": "all"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"index": 7,
|
|
|
|
|
"dtype": [
|
|
|
|
|
"float16", "float"
|
|
|
|
|
],
|
|
|
|
|
"format": [
|
|
|
|
|
"DefaultFormat", "DefaultFormat"
|
|
|
|
|
],
|
|
|
|
|
"name": "mul2_x",
|
|
|
|
|
"need_compile": false,
|
|
|
|
|
"param_type": "required",
|
|
|
|
|
"shape": "all"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"index": 8,
|
|
|
|
|
"dtype": [
|
|
|
|
|
"float16", "float"
|
|
|
|
|
],
|
|
|
|
|
"format": [
|
|
|
|
|
"DefaultFormat", "DefaultFormat"
|
|
|
|
|
],
|
|
|
|
|
"name": "mul3_x",
|
|
|
|
|
"need_compile": false,
|
|
|
|
|
"param_type": "required",
|
|
|
|
|
"shape": "all"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"index": 9,
|
|
|
|
|
"dtype": [
|
|
|
|
|
"float16", "float"
|
|
|
|
|
],
|
|
|
|
|
"format": [
|
|
|
|
|
"DefaultFormat", "DefaultFormat"
|
|
|
|
|
],
|
|
|
|
|
"name": "mul4_x",
|
|
|
|
|
"need_compile": false,
|
|
|
|
|
"param_type": "required",
|
|
|
|
|
"shape": "all"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"index": 10,
|
|
|
|
|
"dtype": [
|
|
|
|
|
"float16", "float"
|
|
|
|
|
],
|
|
|
|
|
"format": [
|
|
|
|
|
"DefaultFormat", "DefaultFormat"
|
|
|
|
|
],
|
|
|
|
|
"name": "add2_y",
|
|
|
|
|
"need_compile": false,
|
|
|
|
|
"param_type": "required",
|
|
|
|
|
"shape": "all"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
"outputs": [
|
|
|
|
|
{
|
|
|
|
|
"index": 0,
|
|
|
|
|
"dtype": [
|
|
|
|
|
"float16", "float"
|
|
|
|
|
],
|
|
|
|
|
"format": [
|
|
|
|
|
"DefaultFormat", "DefaultFormat"
|
|
|
|
|
],
|
|
|
|
|
"name": "output0",
|
|
|
|
|
"need_compile": true,
|
|
|
|
|
"param_type": "required",
|
|
|
|
|
"shape": "all"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"index": 1,
|
|
|
|
|
"dtype": [
|
|
|
|
|
"float16", "float"
|
|
|
|
|
],
|
|
|
|
|
"format": [
|
|
|
|
|
"DefaultFormat", "DefaultFormat"
|
|
|
|
|
],
|
|
|
|
|
"name": "output1",
|
|
|
|
|
"need_compile": true,
|
|
|
|
|
"param_type": "required",
|
|
|
|
|
"shape": "all"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"index": 2,
|
|
|
|
|
"dtype": [
|
|
|
|
|
"float16", "float"
|
|
|
|
|
],
|
|
|
|
|
"format": [
|
|
|
|
|
"DefaultFormat", "DefaultFormat"
|
|
|
|
|
],
|
|
|
|
|
"name": "output2",
|
|
|
|
|
"need_compile": true,
|
|
|
|
|
"param_type": "required",
|
|
|
|
|
"shape": "all"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}""")
|
|
|
|
|
@op_info_register(adam_apply_one_with_decay_op_info)
|
|
|
|
|
def _adam_apply_one_with_decay_tbe():
|
|
|
|
|
"""AdamApplyOneWithDecay TBE register"""
|
|
|
|
|
return
|
|
|
|
|