Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
T
Tensor.LowPrecision
概览
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
linye
Tensor.LowPrecision
Commits
876c85c0
Commit
876c85c0
authored
Jul 29, 2019
by
ltb
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add a macro GETANDSET_CONVERTDATATYPE which is used in ConvertDataType
parent
953421c3
显示空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
14 行增加
和
23 行删除
+14
-23
source/tensor/XName.cpp
+7
-13
source/tensor/XName.h
+7
-10
没有找到文件。
source/tensor/XName.cpp
查看文件 @
876c85c0
...
...
@@ -15,7 +15,7 @@
* limitations under the License.
*/
/*
/*
* $Created by: XIAO Tong (xiaotong@mail.neu.edu.cn) 2018-07-05
*/
...
...
@@ -24,9 +24,9 @@
namespace
nts
{
// namespace nts(NiuTrans.Tensor)
/* get operator name */
const
char
*
GetOPName
(
int
type
)
{
if
((
type
&
MATH_BASE
)
!=
0
)
{
const
char
*
GetOPName
(
int
type
)
{
if
((
type
&
MATH_BASE
)
!=
0
)
{
if
(
type
==
MATH_ABSOLUTE
)
return
"M_ABSOLUTE"
;
else
if
(
type
==
MATH_CEIL
)
...
...
@@ -109,13 +109,7 @@ const char * GetOPName(int type)
return
"R_REDUCEVARIANCE"
;
}
else
if
((
type
&
DATA_BASE
)
!=
0
)
{
if
(
type
==
GETANDSET_CONVERTDATATYPE
)
return
"G_CONVERTDATATYPE"
;
else
if
(
type
==
GETANDSET_INDEXTOONEHOT
)
return
"G_INDEXTOONEHOT"
;
else
if
(
type
==
GETANDSET_ONEHOTTOINDEX
)
return
"G_ONEHOTTOINDEX"
;
else
if
(
type
==
GETANDSET_SELECT
)
if
(
type
==
GETANDSET_SELECT
)
return
"G_SELECT"
;
else
if
(
type
==
MOVEMENT_COPYINDEXED
)
return
"M_COPYINDEXED"
;
...
...
@@ -150,7 +144,7 @@ const char * GetOPName(int type)
else
if
(
type
==
SORT_TOPK
)
return
"S_TOPK"
;
}
else
if
((
type
&
FUNCTION_BASE
)
!=
0
)
{
else
if
((
type
&
FUNCTION_BASE
)
!=
0
)
{
if
(
type
==
FUNC_DROPOUT
)
return
"F_DROPOUT"
;
else
if
(
type
==
FUNC_HARDTANH
)
...
...
@@ -172,7 +166,7 @@ const char * GetOPName(int type)
}
return
"NULL"
;
}
}
}
// namespace nts(NiuTrans.Tensor)
source/tensor/XName.h
查看文件 @
876c85c0
...
...
@@ -15,13 +15,13 @@
* limitations under the License.
*/
/*
/*
*
* We define various names here
*
* $Created by: XIAO Tong (xiaotong@mail.neu.edu.cn) 2018-07-05
* It was really HOT these days. I can't imagine it is SO hot here in Shenyang!
*/
*/
#ifndef __XNAME_H__
#define __XNAME_H__
...
...
@@ -31,6 +31,7 @@ namespace nts { // namespace nts(NiuTrans.Tensor)
/* math operations */
#define MATH_BASE 0x00001000
#define GETANDSET_CONVERTDATATYPE MATH_BASE * 8
#define MATH_ABSOLUTE MATH_BASE + 1
#define MATH_CEIL MATH_ABSOLUTE + 1
#define MATH_EXP MATH_CEIL + 1
...
...
@@ -79,13 +80,9 @@ namespace nts { // namespace nts(NiuTrans.Tensor)
/* data and shape related operations */
#define DATA_BASE MATH_BASE * 2
#define GETANDSET DATA_BASE + 1
#define GETANDSET_CONVERTDATATYPE GETANDSET + 1
#define GETANDSET_INDEXTOONEHOT GETANDSET_CONVERTDATATYPE + 1
#define GETANDSET_ONEHOTTOINDEX GETANDSET_INDEXTOONEHOT + 1
#define GETANDSET_SELECT GETANDSET_ONEHOTTOINDEX + 1
#define GETANDSET_SELECT GETANDSET + 1
#define SHAPE_BASE DATA_BASE * 2
#define MOVEMENT SHAPE_BASE + 1
#define MOVEMENT GETANDSET_SELECT + 1
#define MOVEMENT_COPYINDEXED MOVEMENT + 1
#define MOVEMENT_COPYVALUES MOVEMENT_COPYINDEXED + 1
#define MOVEMENT_GATHER MOVEMENT_COPYVALUES + 1
...
...
@@ -108,7 +105,7 @@ namespace nts { // namespace nts(NiuTrans.Tensor)
#define SORT_TOPK SORT_SORT + 1
/* activation functions */
#define FUNCTION_BASE
SHAPE
_BASE * 2
#define FUNCTION_BASE
DATA
_BASE * 2
#define FUNC_DROPOUT FUNCTION_BASE + 1
#define FUNC_HARDTANH FUNC_DROPOUT + 1
#define FUNC_IDENTITY FUNC_HARDTANH + 1
...
...
@@ -121,7 +118,7 @@ namespace nts { // namespace nts(NiuTrans.Tensor)
#define LOSS_CROSSENTROPY LOSS_BASE + 1
/* get operator name */
const
char
*
GetOPName
(
int
type
);
const
char
*
GetOPName
(
int
type
);
}
// namespace nts(NiuTrans.Tensor)
...
...
ltb
@ltb
被提及 commit
75d9a0f5
Jul 29, 2019
被提及 commit
75d9a0f5
被提及 commit 75d9a0f5a3c9b5a3039818c7a81bff507539d042
切换提交列表
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论