Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
N
NiuTrans.Tensor
概览
Overview
Details
Activity
Cycle Analytics
版本库
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
问题
8
Issues
8
列表
Board
标记
里程碑
合并请求
0
Merge Requests
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
Snippets
成员
Collapse sidebar
Close sidebar
活动
图像
聊天
创建新问题
作业
提交
Issue Boards
Open sidebar
NiuTrans
NiuTrans.Tensor
Commits
509c0233
Commit
509c0233
authored
Feb 19, 2020
by
xuchen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
allocate memory in block rather than buffer for avoiding too small buffer size
parent
e1ed713a
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
16 行增加
和
5 行删除
+16
-5
source/network/XBackwardFunc.cpp
+11
-3
source/network/XBackwardLoss.cpp
+5
-2
没有找到文件。
source/network/XBackwardFunc.cpp
查看文件 @
509c0233
...
...
@@ -31,10 +31,16 @@ namespace nts{
/* compute dE/dx of a node */
void
XFuncGrad
::
MakeGrad
(
XTensor
*
node
,
bool
isEfficient
)
{
if
(
!
isEfficient
)
{
CheckNTErrors
(
node
->
grad
!=
NULL
,
"No gradient found!"
);
}
else
{
CheckNTErrors
(
!
node
->
isGrad
||
node
->
grad
!=
NULL
,
"No gradient found!"
);
}
XLink
&
income
=
node
->
income
;
int
operID
=
income
.
typeID
;
CheckNTErrors
(
node
->
grad
!=
NULL
,
"No gradient found!"
);
CheckNTErrors
(
income
.
tailNum
==
1
,
"Too many input tensors for the function!"
);
XTensor
*
input
=
income
.
tails
[
0
];
...
...
@@ -45,7 +51,8 @@ void XFuncGrad::MakeGrad(XTensor * node, bool isEfficient)
XTensor
*
dedx
=
input
->
grad
;
XTensor
*
dedy
=
output
->
grad
;
XTensor
*
tmp
=
NewTensorBufV2
(
output
,
output
->
devID
,
output
->
mem
);
//XTensor * tmp = NewTensorBufV2(output, output->devID, output->mem);
XTensor
*
tmp
=
NewTensor
(
output
);
if
(
operID
==
FUNC_HARDTANH
)
_HardTanHBackward
(
output
,
input
,
dedy
,
tmp
);
...
...
@@ -70,7 +77,8 @@ void XFuncGrad::MakeGrad(XTensor * node, bool isEfficient)
}
_SumMe
(
dedx
,
tmp
);
DelTensorBuf
(
tmp
);
//DelTensorBuf(tmp);
DelTensor
(
tmp
);
}
node
->
visitMark
=
NODE_FINISHED
;
...
...
source/network/XBackwardLoss.cpp
查看文件 @
509c0233
...
...
@@ -58,7 +58,9 @@ void XLossGrad::MakeGrad(XTensor * node, bool isEfficient)
gold
=
income
.
tails
[
1
];
XTensor
*
tmp
=
NewTensorBufV2
(
output
,
output
->
devID
,
output
->
mem
);
//XTensor * tmp = NewTensorBufV2(output, output->devID, output->mem);
XTensor
*
tmp
=
NewTensor
(
output
);
if
(
operID
==
LOSS_CROSSENTROPY
)
{
if
(
income
.
tailNum
==
3
)
padding
=
income
.
tails
[
2
];
...
...
@@ -70,7 +72,8 @@ void XLossGrad::MakeGrad(XTensor * node, bool isEfficient)
else
{
ShowNTErrors
(
"Wrong activation function type!"
);
}
DelTensorBuf
(
tmp
);
//DelTensorBuf(tmp);
DelTensor
(
tmp
);
}
node
->
visitMark
=
NODE_FINISHED
;
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论