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
0d96c2a0
Commit
0d96c2a0
authored
Jul 21, 2019
by
xuchen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update interface of convertdatatype again
parent
6fd2a671
显示空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
26 行增加
和
23 行删除
+26
-23
source/tensor/XDataType.cpp
+21
-0
source/tensor/XDataType.h
+4
-0
source/tensor/core/getandset/ConvertDataType.cpp
+0
-21
source/tensor/core/getandset/ConvertDataType.h
+0
-2
source/tensor/core/movement/CopyValues.cpp
+1
-0
没有找到文件。
source/tensor/XDataType.cpp
查看文件 @
0d96c2a0
...
...
@@ -60,4 +60,25 @@ TENSOR_DATA_TYPE GetDataType(const char * typeName)
}
}
/*
Below is for calling CPU BLAS for fast matrix operations
I'm not sure how fast it is. But it seems that other
guys are crazy about this. So I decided to have a try.
*/
/* float -> float16 */
_XINLINE_
unsigned
short
FloatToFloat16
(
float
f
)
{
unsigned
int
x
=
*
((
unsigned
int
*
)
&
f
);
unsigned
short
h
=
((
x
>>
16
)
&
0x8000
)
|
((((
x
&
0x7f800000
)
-
0x38000000
)
>>
13
)
&
0x7c00
)
|
((
x
>>
13
)
&
0x03ff
);
return
h
;
}
/* float16 -> float */
_XINLINE_
float
Float16ToFloat
(
unsigned
short
h
)
{
float
f
=
float
(((
h
&
0x8000
)
<<
16
)
|
(((
h
&
0x7c00
)
+
0x1C000
)
<<
13
)
|
((
h
&
0x03FF
)
<<
13
));
return
f
;
}
}
/* end of the nts (NiuTrans.Tensor) namespace */
source/tensor/XDataType.h
查看文件 @
0d96c2a0
...
...
@@ -46,6 +46,9 @@ enum MATRIX_TRANS_TYPE{X_TRANS, X_NOTRANS};
extern
const
char
*
GetDataTypeName
(
TENSOR_DATA_TYPE
type
);
extern
TENSOR_DATA_TYPE
GetDataType
(
const
char
*
typeName
);
unsigned
short
FloatToFloat16
(
float
f
);
float
Float16ToFloat
(
unsigned
short
h
);
}
/* end of the nts (NiuTrans.Tensor) namespace */
#endif
\ No newline at end of file
source/tensor/core/getandset/ConvertDataType.cpp
查看文件 @
0d96c2a0
...
...
@@ -28,27 +28,6 @@
namespace
nts
{
// namespace nts(NiuTrans.Tensor)
/*
Below is for calling CPU BLAS for fast matrix operations
I'm not sure how fast it is. But it seems that other
guys are crazy about this. So I decided to have a try.
*/
/* float -> float16 */
_XINLINE_
unsigned
short
FloatToFloat16
(
float
f
)
{
unsigned
int
x
=
*
((
unsigned
int
*
)
&
f
);
unsigned
short
h
=
((
x
>>
16
)
&
0x8000
)
|
((((
x
&
0x7f800000
)
-
0x38000000
)
>>
13
)
&
0x7c00
)
|
((
x
>>
13
)
&
0x03ff
);
return
h
;
}
/* float16 -> float */
_XINLINE_
float
Float16ToFloat
(
unsigned
short
h
)
{
float
f
=
float
(((
h
&
0x8000
)
<<
16
)
|
(((
h
&
0x7c00
)
+
0x1C000
)
<<
13
)
|
((
h
&
0x03FF
)
<<
13
));
return
f
;
}
/*
data type conversion
>> devID - device id
>> s - source data array
...
...
source/tensor/core/getandset/ConvertDataType.h
查看文件 @
0d96c2a0
...
...
@@ -28,8 +28,6 @@
namespace
nts
{
// namespace nts(NiuTrans.Tensor)
/* data conversion (for lower precision computation) */
unsigned
short
FloatToFloat16
(
float
f
);
float
Float16ToFloat
(
unsigned
short
h
);
void
ConvertDataType
(
int
devID
,
void
*
s
,
TENSOR_DATA_TYPE
typeS
,
void
*
t
,
TENSOR_DATA_TYPE
typeT
,
int
size
);
...
...
source/tensor/core/movement/CopyValues.cpp
查看文件 @
0d96c2a0
...
...
@@ -23,6 +23,7 @@
#include "../../XUtility.h"
#include "CopyValues.h"
#include "CopyValues.cuh"
#include "../getandset/ConvertDataType.h"
namespace
nts
{
// namespace nts(NiuTrans.Tensor)
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论