Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
MegEngine 天元
MegEngine
提交
1040b778
MegEngine
项目概览
MegEngine 天元
/
MegEngine
大约 1 年 前同步成功
通知
399
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看板
提交
1040b778
编写于
6月 28, 2021
作者:
M
Megvii Engine Team
提交者:
huangxinda
7月 19, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix(mge/functional): fix F.topk(kth_only=True)
GitOrigin-RevId: ddecd1d14b62b43b2934fa2671562b04495ff5b4
上级
551cc701
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
51 addition
and
11 deletion
+51
-11
imperative/python/megengine/functional/math.py
imperative/python/megengine/functional/math.py
+15
-11
imperative/python/test/unit/functional/test_math.py
imperative/python/test/unit/functional/test_math.py
+36
-0
未找到文件。
imperative/python/megengine/functional/math.py
浏览文件 @
1040b778
...
...
@@ -673,7 +673,7 @@ def topk(
:param descending: if True, return the largest elements instead. Default: False
:param kth_only: if True, only the k-th element will be returned. Default: False
:param no_sort: if True, the returned elements can be unordered. Default: False
:return: tuple of two tensors `
(topk_tensor, indices_of_int32)`.
:return: tuple of two tensors `
`(topk_tensor, indices_of_int32)``
Examples:
...
...
@@ -695,7 +695,7 @@ def topk(
"""
if
descending
:
inp
=
-
inp
k
=
-
k
if
kth_only
:
mode
=
"kth_only"
...
...
@@ -709,21 +709,25 @@ def topk(
(
k
,)
=
Const
(
k
,
dtype
=
"int32"
,
device
=
inp
.
device
)()
if
len
(
inp
.
shape
)
==
1
:
inp
=
inp
.
reshape
(
1
,
-
1
)
res
=
apply
(
op
,
inp
,
k
)
if
kth_only
:
tns
=
res
[
0
]
(
tns
,)
=
apply
(
op
,
expand_dims
(
inp
,
0
),
k
)
# FIXME:
# could use a dedicated kernel
# gradient may be routed to other indices if k-th value is not unique
ind
=
argmax
((
tns
==
inp
).
astype
(
"int8"
))
tns
=
squeeze
(
tns
,
0
)
else
:
tns
,
ind
=
res
[
0
][
0
],
res
[
1
][
0
]
tns
,
ind
=
apply
(
op
,
expand_dims
(
inp
,
0
),
k
)
tns
=
squeeze
(
tns
,
0
)
ind
=
squeeze
(
ind
,
0
)
else
:
res
=
apply
(
op
,
inp
,
k
)
if
kth_only
:
tns
=
res
(
tns
,)
=
apply
(
op
,
inp
,
k
)
# FIXME: same as above
ind
=
argmax
((
expand_dims
(
tns
,
1
)
==
inp
).
astype
(
"int8"
),
1
)
else
:
tns
,
ind
=
res
[
0
],
res
[
1
]
tns
,
ind
=
apply
(
op
,
inp
,
k
)
if
descending
:
tns
=
-
tns
return
tns
,
ind
...
...
imperative/python/test/unit/functional/test_math.py
浏览文件 @
1040b778
...
...
@@ -168,3 +168,39 @@ def test_has_inf():
data
[
0
][
0
][
0
][
0
]
=
float
(
"inf"
)
rst
=
F
.
math
.
_has_inf
(
tensor
(
data
))
np
.
testing
.
assert_equal
(
rst
.
numpy
(),
[
1
])
@
pytest
.
mark
.
parametrize
(
"descending"
,
[
True
,
False
])
@
pytest
.
mark
.
parametrize
(
"sorted"
,
[
True
,
False
])
@
pytest
.
mark
.
parametrize
(
"inp1d"
,
[
True
,
False
])
@
pytest
.
mark
.
parametrize
(
"kth_only"
,
[
True
,
False
])
def
test_topk
(
descending
,
sorted
,
inp1d
,
kth_only
):
k
=
3
if
inp1d
:
data
=
np
.
random
.
permutation
(
7
)
else
:
data
=
np
.
random
.
permutation
(
5
*
7
).
reshape
(
5
,
7
)
data
=
data
.
astype
(
np
.
int32
)
def
np_sort
(
x
):
if
descending
:
return
np
.
sort
(
x
)[...,
::
-
1
]
return
np
.
sort
(
x
)
res
=
F
.
topk
(
tensor
(
data
),
k
,
descending
=
descending
,
no_sort
=
(
not
sorted
),
kth_only
=
kth_only
)
values
,
indices
=
res
values
=
values
.
numpy
()
indices
=
indices
.
numpy
()
if
kth_only
:
np
.
testing
.
assert_equal
(
values
,
np
.
take_along_axis
(
data
,
indices
[...,
None
],
-
1
).
squeeze
(
-
1
)
)
np
.
testing
.
assert_equal
(
values
,
np_sort
(
data
)[...,
k
-
1
])
else
:
np
.
testing
.
assert_equal
(
values
,
np
.
take_along_axis
(
data
,
indices
,
-
1
))
if
not
sorted
:
values
=
np_sort
(
values
)
np
.
testing
.
assert_equal
(
values
,
np_sort
(
data
)[...,
:
k
])
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录