Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
MegEngine 天元
MegEngine
提交
ce30d045
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
ce30d045
编写于
4月 16, 2020
作者:
M
Megvii Engine Team
提交者:
Xinran Xu
5月 06, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat(mge/functional): add arange in tensor.py
GitOrigin-RevId: ad88a4c18ecdfb8e4bb3a8da7497ac9f5a7e7343
上级
23478a0d
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
74 addition
and
0 deletion
+74
-0
python_module/megengine/functional/__init__.py
python_module/megengine/functional/__init__.py
+1
-0
python_module/megengine/functional/tensor.py
python_module/megengine/functional/tensor.py
+41
-0
python_module/test/unit/functional/test_functional.py
python_module/test/unit/functional/test_functional.py
+32
-0
未找到文件。
python_module/megengine/functional/__init__.py
浏览文件 @
ce30d045
...
...
@@ -75,6 +75,7 @@ from .nn import (
from
.sort
import
argsort
,
sort
,
top_k
from
.tensor
import
(
add_axis
,
arange
,
broadcast_to
,
concat
,
dimshuffle
,
...
...
python_module/megengine/functional/tensor.py
浏览文件 @
ce30d045
...
...
@@ -17,6 +17,7 @@ from megengine._internal import CompGraph, CompNode
from
..core
import
zeros
from
..core.graph
import
_use_default_if_none
from
..core.tensor
import
Tensor
,
wrap_io_tensor
from
.elemwise
import
ceil
from
.utils
import
_decide_comp_node_and_comp_graph
...
...
@@ -553,6 +554,46 @@ def linspace(
return
ret
.
astype
(
dtype
)
def
arange
(
start
:
Union
[
int
,
float
,
Tensor
],
end
:
Union
[
int
,
float
,
Tensor
],
step
:
Union
[
int
,
float
,
Tensor
]
=
1
,
dtype
=
np
.
float32
,
device
:
Optional
[
CompNode
]
=
None
,
comp_graph
:
Optional
[
CompGraph
]
=
None
,
)
->
Tensor
:
r
"""
Returns a Tensor with values from `start` to `end` with adjacent interval `step`
:param start: starting value of the squence, shoule be scalar
:param end: ending value of the squence, shoule be scalar
:param step: the gap between each pair of adjacent values. Default 1
:param dtype: result data type
:return: The generated tensor
Examples:
.. testcode::
import numpy as np
import megengine.functional as F
a = F.arange(1, 5, 1)
print(a.numpy())
.. testoutput::
[1. 2. 3. 4.]
"""
if
dtype
is
not
np
.
float32
:
raise
ValueError
(
"arange is only implemented for float32"
)
num
=
ceil
((
end
-
start
)
/
step
)
stop
=
start
+
step
*
(
num
-
1
)
ret
=
linspace
(
start
,
stop
,
num
,
device
=
device
,
comp_graph
=
comp_graph
)
return
ret
def
zeros_like
(
inp
:
Tensor
)
->
Tensor
:
r
"""
Returns a zero tensor with the same shape as input tensor
...
...
python_module/test/unit/functional/test_functional.py
浏览文件 @
ce30d045
...
...
@@ -157,6 +157,38 @@ def test_broadcast_to():
opr_test
(
cases
,
F
.
broadcast_to
,
compare_fn
=
compare_fn
)
def
test_arange
():
cases
=
[
{
"input"
:
[
1
,
9
,
1
]},
{
"input"
:
[
2
,
10
,
2
]},
]
opr_test
(
cases
,
F
.
arange
,
ref_fn
=
lambda
start
,
end
,
step
:
np
.
arange
(
start
,
end
,
step
,
dtype
=
np
.
float32
),
)
cases
=
[
{
"input"
:
[
9
,
1
,
-
1
]},
{
"input"
:
[
10
,
2
,
-
2
]},
]
opr_test
(
cases
,
F
.
arange
,
ref_fn
=
lambda
start
,
end
,
step
:
np
.
arange
(
start
,
end
,
step
,
dtype
=
np
.
float32
),
)
cases
=
[
{
"input"
:
[
9.3
,
1.2
,
-
0.5
]},
{
"input"
:
[
10.3
,
2.1
,
-
1.7
]},
]
opr_test
(
cases
,
F
.
arange
,
ref_fn
=
lambda
start
,
end
,
step
:
np
.
arange
(
start
,
end
,
step
,
dtype
=
np
.
float32
),
)
def
test_add_update
():
shape
=
(
2
,
3
)
v
=
np
.
random
.
random
(
shape
).
astype
(
np
.
float32
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录