Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
N
NiuTrans.Tensor
概览
Overview
Details
Activity
Cycle Analytics
版本库
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
问题
0
Issues
0
列表
Board
标记
里程碑
合并请求
0
Merge Requests
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
Snippets
成员
Collapse sidebar
Close sidebar
活动
图像
聊天
创建新问题
作业
提交
Issue Boards
Open sidebar
杨迪
NiuTrans.Tensor
Commits
8703cf97
Commit
8703cf97
authored
Jul 19, 2018
by
xiaotong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug in Concatenate and Split
parent
a7f2f309
显示空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
91 行增加
和
14 行删除
+91
-14
source/tensor/core/shape/Concatenate.cpp
+88
-11
source/tensor/core/shape/Split.cpp
+3
-3
没有找到文件。
source/tensor/core/shape/Concatenate.cpp
查看文件 @
8703cf97
...
...
@@ -68,8 +68,7 @@ or "Merge" by means of the tensor shapes
*/
XTensor
Concatenate
(
const
XList
&
smalls
,
int
dim
)
{
CheckNTErrors
(
&
smalls
!=
NULL
,
"Invalid list!"
);
CheckNTErrors
((
smalls
.
count
>
0
),
"Empty list!"
);
CheckNTErrors
(
smalls
.
count
>
0
,
"Empty list!"
);
CheckNTErrors
(
dim
>=
0
,
"Illegal dimension to concatenate!"
);
bool
uniform
=
true
;
...
...
@@ -91,6 +90,22 @@ XTensor Concatenate(const XList &smalls, int dim)
else
dimSize
[
i
]
=
tensor
->
dimSize
[
dim
]
*
smalls
.
count
;
}
float
dr
=
(
!
tensor
->
isSparse
)
?
1.0
F
:
tensor
->
denseRatio
;
XTensor
big
(
order
,
dimSize
,
tensor
->
dataType
,
dr
,
tensor
->
devID
,
tensor
->
mem
);
big
.
SetTMP
();
/* call _Merge function */
_Merge
(
&
smalls
,
&
big
,
dim
);
/* tensor connection */
XLink
::
MakeLink
(
&
smalls
,
&
big
,
SHAPE_MERGE
);
XLink
::
AddParamToHeadInt
(
&
big
,
dim
);
/* destroy variables */
delete
[]
dimSize
;
return
big
;
}
else
{
for
(
int
i
=
0
;
i
<
tensor
->
order
;
i
++
)
...
...
@@ -103,15 +118,13 @@ XTensor Concatenate(const XList &smalls, int dim)
catDimSize
+=
tensor
->
dimSize
[
dim
];
}
dimSize
[
dim
]
=
catDimSize
;
}
XTensor
big
=
XTensor
(
order
,
dimSize
,
tensor
->
dataType
,
tensor
->
denseRatio
,
tensor
->
devID
,
tensor
->
mem
);
big
.
SetZeroAll
();
float
dr
=
(
!
tensor
->
isSparse
)
?
1.0
F
:
tensor
->
denseRatio
;
XTensor
big
(
order
,
dimSize
,
tensor
->
dataType
,
dr
,
tensor
->
devID
,
tensor
->
mem
);
big
.
SetTMP
();
/* call _Merge
function */
_Merge
(
&
smalls
,
&
big
,
dim
);
/* call _ConcatenateSolely
function */
_ConcatenateSolely
(
&
smalls
,
&
big
,
dim
);
/* tensor connection */
XLink
::
MakeLink
(
&
smalls
,
&
big
,
SHAPE_CONCATENATE
);
...
...
@@ -121,6 +134,7 @@ XTensor Concatenate(const XList &smalls, int dim)
delete
[]
dimSize
;
return
big
;
}
}
/*
...
...
@@ -152,14 +166,76 @@ make a new tensor to keep the result and return it.
*/
XTensor
Concatenate
(
const
XTensor
&
smallA
,
const
XTensor
&
smallB
,
int
dim
)
{
ShowNTErrors
(
"rewrite this!!!!!!!
!"
);
CheckNTErrors
(
dim
>=
0
,
"Illegal dimension to concatenate
!"
);
XList
smalls
(
2
);
smalls
.
Add
(
&
smallA
);
smalls
.
Add
(
&
smallB
);
/* call Concatenate function */
return
Concatenate
(
smalls
,
dim
);
bool
uniform
=
true
;
for
(
int
i
=
1
;
i
<
smalls
.
count
;
i
++
)
{
XTensor
*
a
=
(
XTensor
*
)
smalls
.
Get
(
i
-
1
);
XTensor
*
b
=
(
XTensor
*
)
smalls
.
Get
(
i
);
CheckNTErrors
((
a
&&
b
),
"Empty input tensors!"
);
if
(
!
XTensor
::
IsIdentical
(
a
,
b
))
uniform
=
false
;
}
XTensor
*
tensor
=
(
XTensor
*
)
smalls
.
Get
(
0
);
int
order
=
tensor
->
order
;
int
*
dimSize
=
new
int
[
order
];
if
(
uniform
)
{
for
(
int
i
=
0
;
i
<
tensor
->
order
;
i
++
)
{
if
(
i
!=
dim
)
dimSize
[
i
]
=
tensor
->
dimSize
[
i
];
else
dimSize
[
i
]
=
tensor
->
dimSize
[
dim
]
*
smalls
.
count
;
}
float
dr
=
(
!
tensor
->
isSparse
)
?
1.0
F
:
tensor
->
denseRatio
;
XTensor
big
(
order
,
dimSize
,
tensor
->
dataType
,
dr
,
tensor
->
devID
,
tensor
->
mem
);
big
.
SetTMP
();
/* call _Merge function */
_Merge
(
&
smalls
,
&
big
,
dim
);
/* tensor connection */
XLink
::
MakeLink
(
&
smalls
,
&
big
,
SHAPE_MERGE
);
XLink
::
AddParamToHeadInt
(
&
big
,
dim
);
/* destroy variables */
delete
[]
dimSize
;
return
big
;
}
else
{
for
(
int
i
=
0
;
i
<
tensor
->
order
;
i
++
)
if
(
i
!=
dim
)
dimSize
[
i
]
=
tensor
->
dimSize
[
i
];
int
catDimSize
=
0
;
for
(
int
i
=
0
;
i
<
smalls
.
count
;
i
++
)
{
XTensor
*
tensor
=
(
XTensor
*
)
smalls
.
Get
(
i
);
catDimSize
+=
tensor
->
dimSize
[
dim
];
}
dimSize
[
dim
]
=
catDimSize
;
float
dr
=
(
!
tensor
->
isSparse
)
?
1.0
F
:
tensor
->
denseRatio
;
XTensor
big
(
order
,
dimSize
,
tensor
->
dataType
,
dr
,
tensor
->
devID
,
tensor
->
mem
);
big
.
SetTMP
();
/* call _ConcatenateSolely function */
_ConcatenateSolely
(
&
smalls
,
&
big
,
dim
);
/* tensor connection */
XLink
::
MakeLink
(
&
smalls
,
&
big
,
SHAPE_CONCATENATE
);
XLink
::
AddParamToHeadInt
(
&
big
,
dim
);
/* destroy variables */
delete
[]
dimSize
;
return
big
;
}
}
}
//
namespace
nts
(
NiuTrans
.
Tensor
)
\ No newline at end of file
source/tensor/core/shape/Split.cpp
查看文件 @
8703cf97
...
...
@@ -150,11 +150,11 @@ XTensor Split(const XTensor &s, int whereToSplit, int splitNum)
for
(
int
i
=
0
;
i
<
s
.
order
;
i
++
)
{
if
(
i
==
whereToSplit
)
dimSize
[
i
]
=
s
.
dimSize
[
i
]
/
splitNum
;
dimSize
[
i
+
1
]
=
s
.
dimSize
[
i
]
/
splitNum
;
else
dimSize
[
i
]
=
s
.
dimSize
[
i
];
dimSize
[
i
+
1
]
=
s
.
dimSize
[
i
];
}
dimSize
[
-
1
]
=
splitNum
;
dimSize
[
0
]
=
splitNum
;
XTensor
t
=
NewTensor
(
order
,
dimSize
,
s
.
dataType
,
s
.
denseRatio
,
s
.
devID
,
s
.
mem
);
t
.
SetZeroAll
();
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论