Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
flybirding10011
DI-treetensor
提交
7cb29d8e
D
DI-treetensor
项目概览
flybirding10011
/
DI-treetensor
与 Fork 源项目一致
Fork自
OpenDILab开源决策智能平台 / DI-treetensor
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
DI-treetensor
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
7cb29d8e
编写于
9月 12, 2021
作者:
HansBug
😆
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
dev,test(hansbug): add test for tensor/funcs.py
上级
dbf50440
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
71 addition
and
3 deletion
+71
-3
test/tensor/test_funcs.py
test/tensor/test_funcs.py
+63
-0
treetensor/numpy/funcs.py
treetensor/numpy/funcs.py
+4
-2
treetensor/tensor/funcs.py
treetensor/tensor/funcs.py
+4
-1
未找到文件。
test/tensor/test_funcs.py
浏览文件 @
7cb29d8e
...
...
@@ -240,6 +240,40 @@ class TestTensorFuncs:
}
})
def
test_empty
(
self
):
_target
=
ttorch
.
empty
(
TreeValue
({
'a'
:
(
2
,
3
),
'b'
:
(
5
,
6
),
'x'
:
{
'c'
:
(
2
,
3
,
4
),
}
}))
assert
_target
.
shape
==
ttorch
.
TreeSize
({
'a'
:
torch
.
Size
([
2
,
3
]),
'b'
:
torch
.
Size
([
5
,
6
]),
'x'
:
{
'c'
:
torch
.
Size
([
2
,
3
,
4
]),
}
})
def
test_empty_like
(
self
):
_target
=
ttorch
.
empty_like
(
ttorch
.
TreeTensor
({
'a'
:
torch
.
tensor
([[
1
,
2
,
3
],
[
4
,
5
,
6
]]),
'b'
:
torch
.
tensor
([
1
,
2
,
3
,
4
]),
'x'
:
{
'c'
:
torch
.
tensor
([
5
,
6
,
7
]),
'd'
:
torch
.
tensor
([[[
8
,
9
]]]),
}
}))
assert
_target
.
shape
==
ttorch
.
TreeSize
({
'a'
:
torch
.
Size
([
2
,
3
]),
'b'
:
torch
.
Size
([
4
]),
'x'
:
{
'c'
:
torch
.
Size
([
3
]),
'd'
:
torch
.
Size
([
1
,
1
,
2
]),
}
})
def
test_all
(
self
):
r1
=
ttorch
.
all
(
torch
.
tensor
([
True
,
True
,
True
]))
assert
torch
.
is_tensor
(
r1
)
...
...
@@ -340,3 +374,32 @@ class TestTensorFuncs:
'a'
:
torch
.
tensor
([
1
,
2
,
3
]),
'b'
:
torch
.
tensor
([
4
,
5
,
5
]),
})).
all
()
def
test_equal
(
self
):
p1
=
ttorch
.
equal
(
torch
.
tensor
([
1
,
2
,
3
]),
torch
.
tensor
([
1
,
2
,
3
]))
assert
isinstance
(
p1
,
bool
)
assert
p1
p2
=
ttorch
.
equal
(
torch
.
tensor
([
1
,
2
,
3
]),
torch
.
tensor
([
1
,
2
,
4
]))
assert
isinstance
(
p2
,
bool
)
assert
not
p2
p3
=
ttorch
.
equal
(
ttorch
.
TreeTensor
({
'a'
:
torch
.
tensor
([
1
,
2
,
3
]),
'b'
:
torch
.
tensor
([
4
,
5
,
6
]),
}),
ttorch
.
TreeTensor
({
'a'
:
torch
.
tensor
([
1
,
2
,
3
]),
'b'
:
torch
.
tensor
([
4
,
5
,
6
]),
}))
assert
isinstance
(
p3
,
bool
)
assert
p3
p4
=
ttorch
.
equal
(
ttorch
.
TreeTensor
({
'a'
:
torch
.
tensor
([
1
,
2
,
3
]),
'b'
:
torch
.
tensor
([
4
,
5
,
6
]),
}),
ttorch
.
TreeTensor
({
'a'
:
torch
.
tensor
([
1
,
2
,
3
]),
'b'
:
torch
.
tensor
([
4
,
5
,
5
]),
}))
assert
isinstance
(
p4
,
bool
)
assert
not
p4
treetensor/numpy/funcs.py
浏览文件 @
7cb29d8e
import
builtins
import
numpy
as
np
from
treevalue
import
func_treelize
as
original_func_treelize
...
...
@@ -13,13 +15,13 @@ __all__ = [
func_treelize
=
replaceable_partial
(
original_func_treelize
,
return_type
=
TreeNumpy
)
@
ireduce
(
all
)
@
ireduce
(
builtins
.
all
)
@
func_treelize
(
return_type
=
TreeObject
)
def
all
(
a
,
*
args
,
**
kwargs
):
return
np
.
all
(
a
,
*
args
,
**
kwargs
)
@
ireduce
(
any
)
@
ireduce
(
builtins
.
any
)
@
func_treelize
()
def
any
(
a
,
*
args
,
**
kwargs
):
return
np
.
any
(
a
,
*
args
,
**
kwargs
)
...
...
treetensor/tensor/funcs.py
浏览文件 @
7cb29d8e
import
builtins
import
torch
from
treevalue
import
func_treelize
as
original_func_treelize
from
.tensor
import
TreeTensor
,
tireduce
from
..common
import
TreeObject
from
..common
import
TreeObject
,
ireduce
from
..utils
import
replaceable_partial
func_treelize
=
replaceable_partial
(
original_func_treelize
,
return_type
=
TreeTensor
)
...
...
@@ -96,6 +98,7 @@ def eq(input_, other, *args, **kwargs):
return
torch
.
eq
(
input_
,
other
,
*
args
,
**
kwargs
)
@
ireduce
(
builtins
.
all
)
@
func_treelize
()
def
equal
(
input_
,
other
,
*
args
,
**
kwargs
):
return
torch
.
equal
(
input_
,
other
,
*
args
,
**
kwargs
)
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录