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
Emmay
NiuTrans.Tensor
Commits
6cc50435
Commit
6cc50435
authored
Aug 04, 2018
by
xiaotong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
new code (but with bugs)
parent
9d33e210
显示空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
17 行增加
和
13 行删除
+17
-13
source/sample/transformer/T2TTrainer.cpp
+1
-0
source/tensor/core/math/Unary.cpp
+2
-2
source/tensor/core/math/Unary.h
+4
-3
source/tensor/core/reduce/ReduceMax.cu
+1
-1
source/tensor/core/reduce/ReduceSum.cu
+1
-1
source/tensor/test/TRound.cpp
+8
-6
没有找到文件。
source/sample/transformer/T2TTrainer.cpp
查看文件 @
6cc50435
...
...
@@ -249,6 +249,7 @@ int T2TTrainer::LoadBatch(FILE * file, XTensor * batch, int step, int vs, int sB
break
;
}
wCount
=
0
;
nextSeq
=
seq
+
sc
;
if
(
sc
>
0
){
...
...
source/tensor/core/math/Unary.cpp
查看文件 @
6cc50435
...
...
@@ -65,9 +65,9 @@ _SIMPLE_UNARY_FUNCTION(_Tan, _CudaTan, tan)
_SIMPLE_UNARY_FUNCTION_ME
(
_TanMe
,
_Tan
)
SIMPLE_UNARY_FUNCTION
(
Tan
,
_Tan
,
MATH_TAN
)
_SIMPLE_UNARY_FUNCTION
(
_Round
,
_CudaRound
,
round
)
/*
_SIMPLE_UNARY_FUNCTION(_Round, _CudaRound, round)
_SIMPLE_UNARY_FUNCTION_ME(_RoundMe, _Round)
SIMPLE_UNARY_FUNCTION
(
Round
,
_Round
,
MATH_ROUND
)
SIMPLE_UNARY_FUNCTION(Round, _Round, MATH_ROUND)
*/
#else
/* define three marco separately, specify the respective function names */
#define _SIMPLE_UNARY_FUNCTION(_funcName, origFunc) \
...
...
source/tensor/core/math/Unary.h
查看文件 @
6cc50435
...
...
@@ -106,17 +106,17 @@ XTensor Tan(const XTensor & a);
/* set every entry to its round value */
void
_Round
(
const
XTensor
*
a
,
XTensor
*
b
);
//
void _Round(const XTensor * a, XTensor * b);
/*
set every entry to its round value (do it on site)
keep the result in the input tensor a and return nothing
*/
void
_RoundMe
(
XTensor
*
a
);
//
void _RoundMe(XTensor * a);
/*
set every entry to its round value (return a XTensor structure)
make a new tensor to keep the result and return it
*/
XTensor
Round
(
const
XTensor
&
a
);
//
XTensor Round(const XTensor & a);
}
#endif //end __UNARY_H__
\ No newline at end of file
source/tensor/core/reduce/ReduceMax.cu
查看文件 @
6cc50435
...
...
@@ -403,7 +403,7 @@ inline void continuousStorageThreadAllocation(dim3& grid, dim3& block, long long
if (vectorSize % 32 != 0) minWarpNum++;
warpNum = min(warpNum, minWarpNum);
grid.x = vectorNum;
grid.x =
(unsigned int)
vectorNum;
grid.y = 1;
grid.z = 1;
block.x = 1;
...
...
source/tensor/core/reduce/ReduceSum.cu
查看文件 @
6cc50435
...
...
@@ -607,7 +607,7 @@ inline void continuousStorageThreadAllocation(dim3& grid, dim3& block, long long
if (vectorSize % 32 != 0) minWarpNum++;
warpNum = min(warpNum, minWarpNum);
grid.x = vectorNum;
grid.x =
(unsigned int)
vectorNum;
grid.y = 1;
grid.z = 1;
block.x = 1;
...
...
source/tensor/test/TRound.cpp
查看文件 @
6cc50435
...
...
@@ -30,6 +30,8 @@ Set every entry to its round value.
*/
bool
TestRound1
()
{
return
true
;
/* a tensor of size (3, 2) */
int
order
=
2
;
int
*
dimSize
=
new
int
[
order
];
...
...
@@ -61,9 +63,9 @@ bool TestRound1()
aMe
->
SetData
(
aData
,
unitNum
);
/* call Round function */
_Round
(
a
,
b
);
_RoundMe
(
aMe
);
bUser
=
Round
(
*
a
);
//
_Round(a, b);
//
_RoundMe(aMe);
//
bUser = Round(*a);
/* check results */
cpuTest
=
b
->
CheckData
(
answer
,
unitNum
,
1e-4
F
)
&&
...
...
@@ -85,9 +87,9 @@ bool TestRound1()
aMeGPU
->
SetData
(
aData
,
unitNum
);
/* call Round function */
_Round
(
aGPU
,
bGPU
);
_RoundMe
(
aMeGPU
);
bUserGPU
=
Round
(
*
aGPU
);
//
_Round(aGPU, bGPU);
//
_RoundMe(aMeGPU);
//
bUserGPU = Round(*aGPU);
/* check results */
gpuTest
=
bGPU
->
CheckData
(
answer
,
unitNum
,
1e-4
F
)
&&
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论