Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
f380ee4e
P
Paddle
项目概览
PaddlePaddle
/
Paddle
1 年多 前同步成功
通知
2302
Star
20931
Fork
5422
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1423
列表
看板
标记
里程碑
合并请求
543
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1,423
Issue
1,423
列表
看板
标记
里程碑
合并请求
543
合并请求
543
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
f380ee4e
编写于
2月 14, 2018
作者:
K
Kavya Srinet
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Updated format of type in data_type.h
上级
9d5ff82e
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
22 addition
and
22 deletion
+22
-22
paddle/fluid/framework/data_type.h
paddle/fluid/framework/data_type.h
+22
-22
未找到文件。
paddle/fluid/framework/data_type.h
浏览文件 @
f380ee4e
...
@@ -23,15 +23,15 @@ namespace framework {
...
@@ -23,15 +23,15 @@ namespace framework {
inline
proto
::
VarType
::
Type
ToDataType
(
std
::
type_index
type
)
{
inline
proto
::
VarType
::
Type
ToDataType
(
std
::
type_index
type
)
{
using
namespace
paddle
::
framework
::
proto
;
using
namespace
paddle
::
framework
::
proto
;
if
(
typeid
(
float
).
hash_code
()
==
type
.
hash_code
())
{
if
(
typeid
(
float
).
hash_code
()
==
type
.
hash_code
())
{
return
VarType_Type_
FP32
;
return
proto
::
VarType
::
FP32
;
}
else
if
(
typeid
(
double
).
hash_code
()
==
type
.
hash_code
())
{
}
else
if
(
typeid
(
double
).
hash_code
()
==
type
.
hash_code
())
{
return
VarType_Type_
FP64
;
return
proto
::
VarType
::
FP64
;
}
else
if
(
typeid
(
int
).
hash_code
()
==
type
.
hash_code
())
{
}
else
if
(
typeid
(
int
).
hash_code
()
==
type
.
hash_code
())
{
return
VarType_Type_
INT32
;
return
proto
::
VarType
::
INT32
;
}
else
if
(
typeid
(
int64_t
).
hash_code
()
==
type
.
hash_code
())
{
}
else
if
(
typeid
(
int64_t
).
hash_code
()
==
type
.
hash_code
())
{
return
VarType_Type_
INT64
;
return
proto
::
VarType
::
INT64
;
}
else
if
(
typeid
(
bool
).
hash_code
()
==
type
.
hash_code
())
{
}
else
if
(
typeid
(
bool
).
hash_code
()
==
type
.
hash_code
())
{
return
VarType_Type_
BOOL
;
return
proto
::
VarType
::
BOOL
;
}
else
{
}
else
{
PADDLE_THROW
(
"Not supported"
);
PADDLE_THROW
(
"Not supported"
);
}
}
...
@@ -40,15 +40,15 @@ inline proto::VarType::Type ToDataType(std::type_index type) {
...
@@ -40,15 +40,15 @@ inline proto::VarType::Type ToDataType(std::type_index type) {
inline
std
::
type_index
ToTypeIndex
(
proto
::
VarType
::
Type
type
)
{
inline
std
::
type_index
ToTypeIndex
(
proto
::
VarType
::
Type
type
)
{
using
namespace
paddle
::
framework
::
proto
;
using
namespace
paddle
::
framework
::
proto
;
switch
(
type
)
{
switch
(
type
)
{
case
VarType_Type_
FP32
:
case
proto
::
VarType
::
FP32
:
return
typeid
(
float
);
return
typeid
(
float
);
case
VarType_Type_
FP64
:
case
proto
::
VarType
::
FP64
:
return
typeid
(
double
);
return
typeid
(
double
);
case
VarType_Type_
INT32
:
case
proto
::
VarType
::
INT32
:
return
typeid
(
int
);
return
typeid
(
int
);
case
VarType_Type_
INT64
:
case
proto
::
VarType
::
INT64
:
return
typeid
(
int64_t
);
return
typeid
(
int64_t
);
case
VarType_Type_
BOOL
:
case
proto
::
VarType
::
BOOL
:
return
typeid
(
bool
);
return
typeid
(
bool
);
default:
default:
PADDLE_THROW
(
"Not support type %d"
,
type
);
PADDLE_THROW
(
"Not support type %d"
,
type
);
...
@@ -59,19 +59,19 @@ template <typename Visitor>
...
@@ -59,19 +59,19 @@ template <typename Visitor>
inline
void
VisitDataType
(
proto
::
VarType
::
Type
type
,
Visitor
visitor
)
{
inline
void
VisitDataType
(
proto
::
VarType
::
Type
type
,
Visitor
visitor
)
{
using
namespace
paddle
::
framework
::
proto
;
using
namespace
paddle
::
framework
::
proto
;
switch
(
type
)
{
switch
(
type
)
{
case
VarType_Type_
FP32
:
case
proto
::
VarType
::
FP32
:
visitor
.
template
operator
()
<
float
>();
visitor
.
template
operator
()
<
float
>();
break
;
break
;
case
VarType_Type_
FP64
:
case
proto
::
VarType
::
FP64
:
visitor
.
template
operator
()
<
double
>();
visitor
.
template
operator
()
<
double
>();
break
;
break
;
case
VarType_Type_
INT32
:
case
proto
::
VarType
::
INT32
:
visitor
.
template
operator
()
<
int
>();
visitor
.
template
operator
()
<
int
>();
break
;
break
;
case
VarType_Type_
INT64
:
case
proto
::
VarType
::
INT64
:
visitor
.
template
operator
()
<
int64_t
>();
visitor
.
template
operator
()
<
int64_t
>();
break
;
break
;
case
VarType_Type_
BOOL
:
case
proto
::
VarType
::
BOOL
:
visitor
.
template
operator
()
<
bool
>();
visitor
.
template
operator
()
<
bool
>();
break
;
break
;
default:
default:
...
@@ -82,19 +82,19 @@ inline void VisitDataType(proto::VarType::Type type, Visitor visitor) {
...
@@ -82,19 +82,19 @@ inline void VisitDataType(proto::VarType::Type type, Visitor visitor) {
inline
std
::
string
DataTypeToString
(
const
proto
::
VarType
::
Type
type
)
{
inline
std
::
string
DataTypeToString
(
const
proto
::
VarType
::
Type
type
)
{
using
namespace
paddle
::
framework
::
proto
;
using
namespace
paddle
::
framework
::
proto
;
switch
(
type
)
{
switch
(
type
)
{
case
VarType_Type_
FP16
:
case
proto
::
VarType
::
FP16
:
return
"float16"
;
return
"float16"
;
case
VarType_Type_
FP32
:
case
proto
::
VarType
::
FP32
:
return
"float32"
;
return
"float32"
;
case
VarType_Type_
FP64
:
case
proto
::
VarType
::
FP64
:
return
"float64"
;
return
"float64"
;
case
VarType_Type_
INT16
:
case
proto
::
VarType
::
INT16
:
return
"int16"
;
return
"int16"
;
case
VarType_Type_
INT32
:
case
proto
::
VarType
::
INT32
:
return
"int32"
;
return
"int32"
;
case
VarType_Type_
INT64
:
case
proto
::
VarType
::
INT64
:
return
"int64"
;
return
"int64"
;
case
VarType_Type_
BOOL
:
case
proto
::
VarType
::
BOOL
:
return
"bool"
;
return
"bool"
;
default:
default:
PADDLE_THROW
(
"Not support type %d"
,
type
);
PADDLE_THROW
(
"Not support type %d"
,
type
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录