parent
ea001d330f
commit
45d343257b
@ -0,0 +1,63 @@
|
||||
# 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.
|
||||
# ============================================================================
|
||||
|
||||
"""DynamicGRUV2 op"""
|
||||
from mindspore.ops.op_info_register import op_info_register, TBERegOp, DataType
|
||||
|
||||
dynamic_gru_v2_op_info = TBERegOp("DynamicGRUV2") \
|
||||
.fusion_type("OPAQUE") \
|
||||
.async_flag(False) \
|
||||
.binfile_name("dynamic_gru_v2.so") \
|
||||
.compute_cost(10) \
|
||||
.kernel_name("dynamic_gru_v2") \
|
||||
.attr("direction", "optional", "str", "all", "UNIDIRECTIONAL") \
|
||||
.attr("cell_depth", "optional", "int", "all", "1") \
|
||||
.attr("keep_prob", "optional", "float", "all", "1") \
|
||||
.attr("cell_clip", "optional", "float", "all", "-1") \
|
||||
.attr("num_proj", "optional", "int", "all", "0") \
|
||||
.attr("time_major", "optional", "bool", "all", "true") \
|
||||
.attr("activation", "optional", "str", "all", "tanh") \
|
||||
.attr("gate_order", "optional", "str", "all", "rzh") \
|
||||
.attr("reset_after", "optional", "bool", "all", "true") \
|
||||
.attr("is_training", "optional", "bool", "all", "true") \
|
||||
.partial_flag(True) \
|
||||
.input(0, "x", False, "required", "all") \
|
||||
.input(1, "weight_input", False, "required", "all") \
|
||||
.input(2, "weight_hidden", False, "required", "all") \
|
||||
.input(3, "bias_input", False, "optional", "all") \
|
||||
.input(4, "bias_hidden", False, "optional", "all") \
|
||||
.input(5, "seq_length", False, "optional", "all") \
|
||||
.input(6, "init_h", False, "optional", "all") \
|
||||
.output(0, "y", False, "required", "all") \
|
||||
.output(1, "output_h", False, "required", "all") \
|
||||
.output(2, "update", False, "optional", "all") \
|
||||
.output(3, "reset", False, "optional", "all") \
|
||||
.output(4, "new", False, "optional", "all") \
|
||||
.output(5, "hidden_new", False, "optional", "all") \
|
||||
.dtype_format(DataType.F16_FracNZ, DataType.F16_FracZ, DataType.F16_FracZ, DataType.F32_Default,
|
||||
DataType.F32_Default, DataType.I32_Default, DataType.F32_FracNZ, DataType.F32_FracNZ,
|
||||
DataType.F32_FracNZ, DataType.F32_FracNZ, DataType.F32_FracNZ, DataType.F32_FracNZ,
|
||||
DataType.F32_FracNZ) \
|
||||
.dtype_format(DataType.F16_FracNZ, DataType.F16_FracZ, DataType.F16_FracZ, DataType.F16_Default,
|
||||
DataType.F16_Default, DataType.I32_Default, DataType.F16_FracNZ, DataType.F16_FracNZ,
|
||||
DataType.F16_FracNZ, DataType.F16_FracNZ, DataType.F16_FracNZ, DataType.F16_FracNZ,
|
||||
DataType.F16_FracNZ) \
|
||||
.get_op_info()
|
||||
|
||||
|
||||
@op_info_register(dynamic_gru_v2_op_info)
|
||||
def _dynamic_gru_v2_tbe():
|
||||
"""DynamicGRUV2 TBE register"""
|
||||
return
|
@ -0,0 +1,51 @@
|
||||
# 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.
|
||||
# ============================================================================
|
||||
|
||||
"""GRUV2HiddenGrad op"""
|
||||
from mindspore.ops.op_info_register import op_info_register, TBERegOp, DataType
|
||||
|
||||
gru_v2_hidden_grad_op_info = TBERegOp("GRUV2HiddenGrad") \
|
||||
.fusion_type("OPAQUE") \
|
||||
.async_flag(False) \
|
||||
.binfile_name("gru_v2_hidden_grad.so") \
|
||||
.compute_cost(10) \
|
||||
.kernel_name("gru_v2_hidden_grad") \
|
||||
.attr("gate_order", "optional", "str", "all", "zrh") \
|
||||
.partial_flag(True) \
|
||||
.input(0, "weight_input", False, "required", "all") \
|
||||
.input(1, "init_h", False, "required", "all") \
|
||||
.input(2, "h", False, "required", "all") \
|
||||
.input(3, "dy", False, "optional", "all") \
|
||||
.input(4, "dh", False, "optional", "all") \
|
||||
.input(5, "update", False, "optional", "all") \
|
||||
.input(6, "reset", False, "optional", "all") \
|
||||
.input(7, "new", False, "optional", "all") \
|
||||
.input(8, "hidden_new", False, "optional", "all") \
|
||||
.output(0, "dh_preh", False, "required", "all") \
|
||||
.output(1, "dgate_h", False, "required", "all") \
|
||||
.output(2, "dnt_x", False, "optional", "all") \
|
||||
.dtype_format(DataType.F16_FracNZ, DataType.F32_FracNZ, DataType.F32_FracNZ, DataType.F32_FracNZ,
|
||||
DataType.F32_FracNZ, DataType.F32_FracNZ, DataType.F32_FracNZ, DataType.F32_FracNZ,
|
||||
DataType.F32_FracNZ, DataType.F32_FracNZ, DataType.F32_FracNZ, DataType.F32_FracNZ) \
|
||||
.dtype_format(DataType.F16_FracNZ, DataType.F16_FracNZ, DataType.F16_FracNZ, DataType.F16_FracNZ,
|
||||
DataType.F16_FracNZ, DataType.F16_FracNZ, DataType.F16_FracNZ, DataType.F16_FracNZ,
|
||||
DataType.F16_FracNZ, DataType.F16_FracNZ, DataType.F16_FracNZ, DataType.F16_FracNZ) \
|
||||
.get_op_info()
|
||||
|
||||
|
||||
@op_info_register(gru_v2_hidden_grad_op_info)
|
||||
def _gru_v2_hidden_grad_tbe():
|
||||
"""DynamicGRUV2 TBE register"""
|
||||
return
|
Loading…
Reference in new issue