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
d3ee28fc
Commit
d3ee28fc
authored
Aug 04, 2018
by
xuchen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug fix
parent
6cc50435
全部展开
显示空白字符变更
内嵌
并排
正在显示
8 个修改的文件
包含
14 行增加
和
12 行删除
+14
-12
source/network/XBackwardMath.h
+0
-0
source/sample/fnnlm/FNNLM.cpp
+4
-4
source/tensor/core/math/Unary.cpp
+3
-2
source/tensor/core/math/Unary.cu
+2
-1
source/tensor/core/math/Unary.cuh
+5
-5
source/tensor/core/reduce/ReduceMax.cu
+0
-0
source/tensor/core/reduce/ReduceSum.cu
+0
-0
source/tensor/math.zip
+0
-0
没有找到文件。
source/network/XBackwardMath.h
查看文件 @
d3ee28fc
source/sample/fnnlm/FNNLM.cpp
查看文件 @
d3ee28fc
...
...
@@ -1108,10 +1108,6 @@ void Test(const char * test, const char * result, FNNModel &model)
/* the gold standard */
XTensor
gold
;
if
(
!
autoDiff
)
{
/* prepare an empty network for building the fnn */
FNNNet
net
;
/* make the input tensor for position i */
for
(
int
i
=
0
;
i
<
model
.
n
-
1
;
i
++
)
MakeWordBatch
(
inputs
[
i
],
ngrams
,
ngramNum
,
i
,
model
.
vSize
,
model
.
devID
,
model
.
mem
);
...
...
@@ -1119,6 +1115,10 @@ void Test(const char * test, const char * result, FNNModel &model)
/* make the gold tensor */
MakeWordBatch
(
gold
,
ngrams
,
ngramNum
,
model
.
n
-
1
,
model
.
vSize
,
model
.
devID
,
model
.
mem
);
if
(
!
autoDiff
)
{
/* prepare an empty network for building the fnn */
FNNNet
net
;
/* forward computation */
Forward
(
inputs
,
output
,
model
,
net
);
}
...
...
source/tensor/core/math/Unary.cpp
查看文件 @
d3ee28fc
...
...
@@ -122,9 +122,9 @@ _SIMPLE_UNARY_FUNCTION(_Tan, tan)
_SIMPLE_UNARY_FUNCTION_ME
(
_TanMe
,
_Tan
)
SIMPLE_UNARY_FUNCTION
(
Tan
,
_Tan
,
MATH_TAN
)
_SIMPLE_UNARY_FUNCTION
(
_Round
,
round
)
/*
_SIMPLE_UNARY_FUNCTION(_Round, round)
_SIMPLE_UNARY_FUNCTION_ME(_RoundMe, _Round)
SIMPLE_UNARY_FUNCTION
(
Round
,
_Round
,
MATH_ROUND
)
SIMPLE_UNARY_FUNCTION(Round, _Round, MATH_ROUND)
*/
#endif
}
\ No newline at end of file
source/tensor/core/math/Unary.cu
查看文件 @
d3ee28fc
...
...
@@ -57,6 +57,6 @@ SIMPLE_UNARY_FUNCTION_GPU(Log, log)
SIMPLE_UNARY_FUNCTION_GPU(Sin, sin)
SIMPLE_UNARY_FUNCTION_GPU(Cos, cos)
SIMPLE_UNARY_FUNCTION_GPU(Tan, tan)
SIMPLE_UNARY_FUNCTION_GPU(Round, round)
//
SIMPLE_UNARY_FUNCTION_GPU(Round, round)
}
\ No newline at end of file
source/tensor/core/math/Unary.cuh
查看文件 @
d3ee28fc
...
...
@@ -84,13 +84,13 @@ void KernelTan(__half * a, __half * b, int size);
void _CudaTan(const XTensor * a, XTensor * b);
/* set each entry to its round value (CUDA Kernel) */
__global__
void KernelRound(DTYPE * a, DTYPE * b, int size);
//
__global__
//
void KernelRound(DTYPE * a, DTYPE * b, int size);
/* set each entry to its round value (CUDA Kernel) with float16 data type*/
__global__
void KernelRound(__half * a, __half * b, int size);
//
__global__
//
void KernelRound(__half * a, __half * b, int size);
/* set each entry to its round value */
void _CudaRound(const XTensor * a, XTensor * b);
//
void _CudaRound(const XTensor * a, XTensor * b);
#endif // USE_CUDA
...
...
source/tensor/core/reduce/ReduceMax.cu
查看文件 @
d3ee28fc
差异被折叠。
点击展开。
source/tensor/core/reduce/ReduceSum.cu
查看文件 @
d3ee28fc
差异被折叠。
点击展开。
source/tensor/math.zip
deleted
100644 → 0
查看文件 @
6cc50435
File deleted
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论