Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
MegEngine 天元
MegEngine
提交
912d733e
MegEngine
项目概览
MegEngine 天元
/
MegEngine
1 年多 前同步成功
通知
403
Star
4705
Fork
582
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
MegEngine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
912d733e
编写于
10月 10, 2020
作者:
M
Megvii Engine Team
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix(dnn): support bool for IndexingMultiAxisVec
GitOrigin-RevId: ddcfaa06b0a1eefb1964e28ebc0b8022e482eb5e
上级
dacc4854
变更
5
显示空白变更内容
内联
并排
Showing
5 changed file
with
20 addition
and
0 deletion
+20
-0
dnn/src/cuda/indexing_multi_axis_vec/kern_apply_opr_impl.cuinl
...rc/cuda/indexing_multi_axis_vec/kern_apply_opr_impl.cuinl
+1
-0
dnn/src/cuda/indexing_multi_axis_vec/kern_apply_opr_incr.cu
dnn/src/cuda/indexing_multi_axis_vec/kern_apply_opr_incr.cu
+5
-0
dnn/src/cuda/indexing_multi_axis_vec/opr_impl.cpp
dnn/src/cuda/indexing_multi_axis_vec/opr_impl.cpp
+1
-0
dnn/src/naive/indexing_multi_axis_vec/opr_impl.cpp
dnn/src/naive/indexing_multi_axis_vec/opr_impl.cpp
+1
-0
imperative/python/test/unit/core/test_indexing_op.py
imperative/python/test/unit/core/test_indexing_op.py
+12
-0
未找到文件。
dnn/src/cuda/indexing_multi_axis_vec/kern_apply_opr_impl.cuinl
浏览文件 @
912d733e
...
...
@@ -72,6 +72,7 @@ namespace indexing_multi_axis_vec {
#define cb0(_dtype) \
MEGDNN_FOREACH_TENSOR_NDIM(INST, DTypeTrait<_dtype>::ctype)
MEGDNN_FOREACH_COMPUTING_DTYPE
(
cb0
)
cb0
(
::
megdnn
::
dtype
::
Bool
)
#undef cb0
#undef INST
...
...
dnn/src/cuda/indexing_multi_axis_vec/kern_apply_opr_incr.cu
浏览文件 @
912d733e
...
...
@@ -39,6 +39,11 @@ __device__ void atomicAdd(megdnn::dt_int16 *, megdnn::dt_int16) {
((
int
*
)
0
)[
0
]
=
1
;
}
__device__
void
atomicAdd
(
megdnn
::
dt_bool
*
,
megdnn
::
dt_bool
)
{
__trap
();
((
int
*
)
0
)[
0
]
=
1
;
}
#define KERN_APPLY_OPR_OPR \
::megdnn::cuda::indexing_multi_axis_vec::OprAtomicIncr
#include "./kern_apply_opr_impl.cuinl"
...
...
dnn/src/cuda/indexing_multi_axis_vec/opr_impl.cpp
浏览文件 @
912d733e
...
...
@@ -120,6 +120,7 @@ void ExecImpl<Opr>::dispatch_exec() {
case DTypeTrait<_dtype>::enumv: \
return dispatch_exec_ctype<DTypeTrait<_dtype>::ctype>();
MEGDNN_FOREACH_COMPUTING_DTYPE
(
cb
)
cb
(
::
megdnn
::
dtype
::
Bool
)
#undef cb
default:
megdnn_throw
(
"bad dtype"
);
...
...
dnn/src/naive/indexing_multi_axis_vec/opr_impl.cpp
浏览文件 @
912d733e
...
...
@@ -88,6 +88,7 @@ void dispatch_exec(HandleImpl *handle,
}
switch
(
data
.
layout
.
dtype
.
enumv
())
{
MEGDNN_FOREACH_COMPUTING_DTYPE
(
cb
)
cb
(
::
megdnn
::
dtype
::
Bool
)
default:
megdnn_throw
(
megdnn_mangle
(
"bad dtype"
));
}
...
...
imperative/python/test/unit/core/test_indexing_op.py
浏览文件 @
912d733e
...
...
@@ -519,6 +519,18 @@ def test_advance_indexing_with_bool():
np
.
testing
.
assert_equal
(
a
[
b
],
aa
[
bb
].
numpy
())
np
.
testing
.
assert_equal
(
a
[:,
[
True
,
False
]],
aa
[:,
[
True
,
False
]].
numpy
())
a
=
np
.
array
([[
True
,
False
],
[
False
,
True
]])
b
=
np
.
array
([
1
])
aa
=
Tensor
(
a
)
bb
=
Tensor
(
b
)
np
.
testing
.
assert_equal
(
a
[
b
],
aa
[
bb
].
numpy
())
b
=
np
.
array
([[
True
,
True
],
[
False
,
True
]])
bb
=
Tensor
(
b
)
np
.
testing
.
assert_equal
(
a
[
b
],
aa
[
bb
].
numpy
())
a
[
b
]
=
False
aa
[
bb
]
=
False
np
.
testing
.
assert_equal
(
a
,
aa
.
numpy
())
# XXX: trace does not expect empty condtake tensor
if
not
use_tensor_shape
():
a
=
np
.
ones
((
2
,
2
),
dtype
=
np
.
int32
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录