Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
magicwindyyd
mindspore
提交
70c80c05
M
mindspore
项目概览
magicwindyyd
/
mindspore
与 Fork 源项目一致
Fork自
MindSpore / mindspore
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
M
mindspore
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
70c80c05
编写于
4月 27, 2020
作者:
B
buxue
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
dock FloorMod GreaterEqual NotEqual ScatterNdUpdate
上级
77acb44b
变更
7
隐藏空白更改
内联
并排
Showing
7 changed file
with
178 addition
and
4 deletion
+178
-4
mindspore/ops/_op_impl/tbe/__init__.py
mindspore/ops/_op_impl/tbe/__init__.py
+5
-1
mindspore/ops/_op_impl/tbe/fill.py
mindspore/ops/_op_impl/tbe/fill.py
+2
-2
mindspore/ops/_op_impl/tbe/floor_mod.py
mindspore/ops/_op_impl/tbe/floor_mod.py
+38
-0
mindspore/ops/_op_impl/tbe/greater_equal.py
mindspore/ops/_op_impl/tbe/greater_equal.py
+45
-0
mindspore/ops/_op_impl/tbe/not_equal.py
mindspore/ops/_op_impl/tbe/not_equal.py
+45
-0
mindspore/ops/_op_impl/tbe/scatter_nd.py
mindspore/ops/_op_impl/tbe/scatter_nd.py
+1
-1
mindspore/ops/_op_impl/tbe/scatter_nd_update.py
mindspore/ops/_op_impl/tbe/scatter_nd_update.py
+42
-0
未找到文件。
mindspore/ops/_op_impl/tbe/__init__.py
浏览文件 @
70c80c05
...
...
@@ -142,8 +142,12 @@ from .smooth_l1_loss_grad import _smooth_l1_loss_grad_tbe
from
.fused_mul_add
import
_fused_mul_add_tbe
from
.fused_mul_add_n
import
_fused_mul_add_n_tbe
from
.fused_mul_apply_momentum
import
_fused_mul_apply_momentum_tbe
from
.fill
_d
import
_fill_d
_op_tbe
from
.fill
import
_fill
_op_tbe
from
.erf
import
_erf_op_tbe
from
.depthwise_conv2d
import
_depthwise_conv2d_tbe
from
.depthwise_conv2d_backprop_filter
import
_depthwise_conv2d_backprop_filter_tbe
from
.depthwise_conv2d_backprop_input
import
_depthwise_conv2d_backprop_input_tbe
from
.greater_equal
import
_greater_equal_tbe
from
.not_equal
import
_not_equal_tbe
from
.floor_mod
import
_floor_mod_tbe
from
.scatter_nd_update
import
_scatter_nd_update_tbe
mindspore/ops/_op_impl/tbe/fill
_d
.py
→
mindspore/ops/_op_impl/tbe/fill.py
浏览文件 @
70c80c05
...
...
@@ -16,7 +16,7 @@
"""FillD op"""
from
mindspore.ops.op_info_register
import
op_info_register
,
TBERegOp
,
DataType
fill_d_op_info
=
TBERegOp
(
"Fill
D
"
)
\
fill_d_op_info
=
TBERegOp
(
"Fill"
)
\
.
fusion_type
(
"ELEMWISE"
)
\
.
async_flag
(
False
)
\
.
binfile_name
(
"fill_d.so"
)
\
...
...
@@ -50,6 +50,6 @@ fill_d_op_info = TBERegOp("FillD") \
@
op_info_register
(
fill_d_op_info
)
def
_fill_
d_
op_tbe
():
def
_fill_op_tbe
():
"""FillD TBE register"""
return
mindspore/ops/_op_impl/tbe/floor_mod.py
0 → 100644
浏览文件 @
70c80c05
# 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.
# ============================================================================
"""FloorMod op"""
from
mindspore.ops.op_info_register
import
op_info_register
,
TBERegOp
,
DataType
floor_mod_op_info
=
TBERegOp
(
"FloorMod"
)
\
.
fusion_type
(
"ELEMWISE"
)
\
.
async_flag
(
False
)
\
.
binfile_name
(
"floor_mod.so"
)
\
.
compute_cost
(
10
)
\
.
kernel_name
(
"floor_mod"
)
\
.
partial_flag
(
True
)
\
.
input
(
0
,
"x1"
,
False
,
"required"
,
"all"
)
\
.
input
(
1
,
"x2"
,
False
,
"required"
,
"all"
)
\
.
output
(
0
,
"y"
,
False
,
"required"
,
"all"
)
\
.
dtype_format
(
DataType
.
F16_Default
,
DataType
.
F16_Default
,
DataType
.
F16_Default
)
\
.
dtype_format
(
DataType
.
F32_Default
,
DataType
.
F32_Default
,
DataType
.
F32_Default
)
\
.
dtype_format
(
DataType
.
I32_Default
,
DataType
.
I32_Default
,
DataType
.
I32_Default
)
\
.
get_op_info
()
@
op_info_register
(
floor_mod_op_info
)
def
_floor_mod_tbe
():
"""FloorMod TBE register"""
return
mindspore/ops/_op_impl/tbe/greater_equal.py
0 → 100644
浏览文件 @
70c80c05
# 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.
# ============================================================================
"""GreaterEqual op"""
from
mindspore.ops.op_info_register
import
op_info_register
,
TBERegOp
,
DataType
greater_equal_op_info
=
TBERegOp
(
"GreaterEqual"
)
\
.
fusion_type
(
"OPAQUE"
)
\
.
async_flag
(
False
)
\
.
binfile_name
(
"greater_equal.so"
)
\
.
compute_cost
(
10
)
\
.
kernel_name
(
"greater_equal"
)
\
.
partial_flag
(
True
)
\
.
input
(
0
,
"x1"
,
False
,
"required"
,
"all"
)
\
.
input
(
1
,
"x2"
,
False
,
"required"
,
"all"
)
\
.
output
(
0
,
"y"
,
False
,
"required"
,
"all"
)
\
.
dtype_format
(
DataType
.
I8_Default
,
DataType
.
I8_Default
,
DataType
.
BOOL_Default
)
\
.
dtype_format
(
DataType
.
I8_5HD
,
DataType
.
I8_5HD
,
DataType
.
BOOL_5HD
)
\
.
dtype_format
(
DataType
.
U8_Default
,
DataType
.
U8_Default
,
DataType
.
BOOL_Default
)
\
.
dtype_format
(
DataType
.
U8_5HD
,
DataType
.
U8_5HD
,
DataType
.
BOOL_5HD
)
\
.
dtype_format
(
DataType
.
I32_Default
,
DataType
.
I32_Default
,
DataType
.
BOOL_Default
)
\
.
dtype_format
(
DataType
.
I32_5HD
,
DataType
.
I32_5HD
,
DataType
.
BOOL_5HD
)
\
.
dtype_format
(
DataType
.
F16_Default
,
DataType
.
F16_Default
,
DataType
.
BOOL_Default
)
\
.
dtype_format
(
DataType
.
F16_5HD
,
DataType
.
F16_5HD
,
DataType
.
BOOL_5HD
)
\
.
dtype_format
(
DataType
.
F32_Default
,
DataType
.
F32_Default
,
DataType
.
BOOL_Default
)
\
.
dtype_format
(
DataType
.
F32_5HD
,
DataType
.
F32_5HD
,
DataType
.
BOOL_5HD
)
\
.
get_op_info
()
@
op_info_register
(
greater_equal_op_info
)
def
_greater_equal_tbe
():
"""Greater TBE register"""
return
mindspore/ops/_op_impl/tbe/not_equal.py
0 → 100644
浏览文件 @
70c80c05
# 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.
# ============================================================================
"""NotEqual op"""
from
mindspore.ops.op_info_register
import
op_info_register
,
TBERegOp
,
DataType
not_equal_op_info
=
TBERegOp
(
"NotEqual"
)
\
.
fusion_type
(
"ELEMWISE"
)
\
.
async_flag
(
False
)
\
.
binfile_name
(
"not_equal.so"
)
\
.
compute_cost
(
10
)
\
.
kernel_name
(
"not_equal"
)
\
.
partial_flag
(
True
)
\
.
input
(
0
,
"x1"
,
False
,
"required"
,
"all"
)
\
.
input
(
1
,
"x2"
,
False
,
"required"
,
"all"
)
\
.
output
(
0
,
"y"
,
False
,
"required"
,
"all"
)
\
.
dtype_format
(
DataType
.
I8_Default
,
DataType
.
I8_Default
,
DataType
.
BOOL_Default
)
\
.
dtype_format
(
DataType
.
I8_5HD
,
DataType
.
I8_5HD
,
DataType
.
BOOL_5HD
)
\
.
dtype_format
(
DataType
.
U8_Default
,
DataType
.
U8_Default
,
DataType
.
BOOL_Default
)
\
.
dtype_format
(
DataType
.
U8_5HD
,
DataType
.
U8_5HD
,
DataType
.
BOOL_5HD
)
\
.
dtype_format
(
DataType
.
I32_Default
,
DataType
.
I32_Default
,
DataType
.
BOOL_Default
)
\
.
dtype_format
(
DataType
.
I32_5HD
,
DataType
.
I32_5HD
,
DataType
.
BOOL_5HD
)
\
.
dtype_format
(
DataType
.
F16_Default
,
DataType
.
F16_Default
,
DataType
.
BOOL_Default
)
\
.
dtype_format
(
DataType
.
F16_5HD
,
DataType
.
F16_5HD
,
DataType
.
BOOL_5HD
)
\
.
dtype_format
(
DataType
.
F32_Default
,
DataType
.
F32_Default
,
DataType
.
BOOL_Default
)
\
.
dtype_format
(
DataType
.
F32_5HD
,
DataType
.
F32_5HD
,
DataType
.
BOOL_5HD
)
\
.
get_op_info
()
@
op_info_register
(
not_equal_op_info
)
def
_not_equal_tbe
():
"""Equal TBE register"""
return
mindspore/ops/_op_impl/tbe/scatter_nd.py
浏览文件 @
70c80c05
...
...
@@ -37,5 +37,5 @@ scatter_nd_op_info = TBERegOp("ScatterNd") \
@
op_info_register
(
scatter_nd_op_info
)
def
_scatter_nd_tbe
():
"""
Conv2D
TBE register"""
"""
ScatterNd
TBE register"""
return
mindspore/ops/_op_impl/tbe/scatter_nd_update.py
0 → 100644
浏览文件 @
70c80c05
# 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.
# ============================================================================
"""ScatterNdUpdate op"""
from
mindspore.ops.op_info_register
import
op_info_register
,
TBERegOp
,
DataType
scatter_nd_update_op_info
=
TBERegOp
(
"ScatterNdUpdate"
)
\
.
fusion_type
(
"ELEMWISE"
)
\
.
async_flag
(
False
)
\
.
binfile_name
(
"scatter_nd_update.so"
)
\
.
compute_cost
(
10
)
\
.
kernel_name
(
"scatter_nd_update"
)
\
.
partial_flag
(
True
)
\
.
attr
(
"use_locking"
,
"optional"
,
"bool"
,
"all"
)
\
.
input
(
0
,
"var"
,
False
,
"required"
,
"all"
)
\
.
input
(
1
,
"indices"
,
False
,
"required"
,
"all"
)
\
.
input
(
1
,
"updates"
,
False
,
"required"
,
"all"
)
\
.
output
(
0
,
"var"
,
False
,
"required"
,
"all"
)
\
.
dtype_format
(
DataType
.
F16_Default
,
DataType
.
I32_Default
,
DataType
.
F16_Default
,
DataType
.
F16_Default
)
\
.
dtype_format
(
DataType
.
F32_Default
,
DataType
.
I32_Default
,
DataType
.
F32_Default
,
DataType
.
F32_Default
)
\
.
dtype_format
(
DataType
.
I8_Default
,
DataType
.
I32_Default
,
DataType
.
I8_Default
,
DataType
.
I8_Default
)
\
.
dtype_format
(
DataType
.
U8_Default
,
DataType
.
I32_Default
,
DataType
.
U8_Default
,
DataType
.
U8_Default
,)
\
.
dtype_format
(
DataType
.
BOOL_Default
,
DataType
.
I32_Default
,
DataType
.
BOOL_Default
,
DataType
.
BOOL_Default
)
\
.
get_op_info
()
@
op_info_register
(
scatter_nd_update_op_info
)
def
_scatter_nd_update_tbe
():
"""ScatterNdUpdate TBE register"""
return
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录