Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
9f269387
P
Paddle-Lite
项目概览
PaddlePaddle
/
Paddle-Lite
通知
331
Star
4
Fork
1
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
271
列表
看板
标记
里程碑
合并请求
78
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle-Lite
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
271
Issue
271
列表
看板
标记
里程碑
合并请求
78
合并请求
78
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
9f269387
编写于
4月 13, 2020
作者:
H
huzhiqiang
提交者:
GitHub
4月 13, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[Windows compile] change core/types name to avoid corruption on windows (#3377)
上级
19e4987c
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
29 addition
and
29 deletion
+29
-29
lite/core/types.cc
lite/core/types.cc
+7
-7
lite/core/types.h
lite/core/types.h
+13
-13
lite/model_parser/naive_buffer/naive_buffer.h
lite/model_parser/naive_buffer/naive_buffer.h
+4
-4
lite/model_parser/naive_buffer/naive_buffer_test.cc
lite/model_parser/naive_buffer/naive_buffer_test.cc
+5
-5
未找到文件。
lite/core/types.cc
浏览文件 @
9f269387
...
...
@@ -67,31 +67,31 @@ STL::ostream& operator<<(STL::ostream& os, const KernelPickFactor& k) {
template
<
>
Type
StdTypeToRepr
<
int32_t
>
()
{
return
Type
::
_int
32
;
return
Type
::
INT
32
;
}
template
<
>
Type
StdTypeToRepr
<
int64_t
>
()
{
return
Type
::
_int
64
;
return
Type
::
INT
64
;
}
template
<
>
Type
StdTypeToRepr
<
float
>
()
{
return
Type
::
_float
32
;
return
Type
::
FLOAT
32
;
}
template
<
>
Type
StdTypeToRepr
<
double
>
()
{
return
Type
::
_f
loat64
;
return
Type
::
F
loat64
;
}
template
<
>
Type
StdTypeToRepr
<
std
::
vector
<
char
>>
()
{
return
Type
::
_char_list
;
return
Type
::
CHARLIST
;
}
template
<
>
Type
StdTypeToRepr
<
std
::
string
>
()
{
return
Type
::
_string
;
return
Type
::
STRING
;
}
template
<
>
Type
StdTypeToRepr
<
bool
>
()
{
return
Type
::
_bool
;
return
Type
::
BOOL
;
}
}
// namespace core
...
...
lite/core/types.h
浏览文件 @
9f269387
...
...
@@ -29,23 +29,23 @@ namespace core {
*/
// TODO(Superjomn) unify all the type representation across the lite framework.
enum
class
Type
{
_unk
=
-
1
,
UNK
=
-
1
,
// primary types
_int
32
,
_int
64
,
_float
32
,
_f
loat64
,
_bool
,
_string
,
INT
32
,
INT
64
,
FLOAT
32
,
F
loat64
,
BOOL
,
STRING
,
// primary list type
_char_list
,
CHARLIST
,
// list types
_list
,
LIST
,
// enum type
_enum
,
_float
16
,
ENUM
,
FLOAT
16
,
// number of types
__num__
,
NUM
,
};
enum
class
FluidType
{
...
...
@@ -81,7 +81,7 @@ enum class FluidType {
template
<
typename
T
>
Type
StdTypeToRepr
()
{
return
Type
::
_unk
;
return
Type
::
UNK
;
}
template
<
>
Type
StdTypeToRepr
<
int32_t
>
();
...
...
lite/model_parser/naive_buffer/naive_buffer.h
浏览文件 @
9f269387
...
...
@@ -192,7 +192,7 @@ class EnumBuilder : public FieldBuilder {
~
EnumBuilder
()
=
default
;
Type
type
()
const
override
{
return
Type
::
_enum
;
}
Type
type
()
const
override
{
return
Type
::
ENUM
;
}
};
class
StringBuilder
:
public
FieldBuilder
{
...
...
@@ -211,7 +211,7 @@ class StringBuilder : public FieldBuilder {
void
Load
()
override
;
Type
type
()
const
override
{
return
Type
::
_string
;
}
Type
type
()
const
override
{
return
Type
::
STRING
;
}
};
/*
...
...
@@ -266,7 +266,7 @@ class StructBuilder : public FieldBuilder {
/// Type of this struct.
// TODO(Superjomn) The customized type is not supported yet.
Type
type
()
const
override
{
return
Type
::
_unk
;
}
Type
type
()
const
override
{
return
Type
::
UNK
;
}
/// Get a field by `name`.
template
<
typename
T
>
...
...
@@ -327,7 +327,7 @@ class ListBuilder : public FieldBuilder {
}
// Get element type.
Type
type
()
const
override
{
return
Type
::
_list
;
}
Type
type
()
const
override
{
return
Type
::
LIST
;
}
/// Persist information to the corresponding BinaryTable.
void
Save
()
override
;
...
...
lite/model_parser/naive_buffer/naive_buffer_test.cc
浏览文件 @
9f269387
...
...
@@ -24,9 +24,9 @@ TEST(NaiveBuffer, primary) {
PrimaryBuilder
<
int32_t
>
p0
(
&
table
);
PrimaryBuilder
<
float
>
p1
(
&
table
);
StringBuilder
p2
(
&
table
);
ASSERT_EQ
(
p0
.
type
(),
Type
::
_int
32
);
ASSERT_EQ
(
p1
.
type
(),
Type
::
_float
32
);
ASSERT_EQ
(
p2
.
type
(),
Type
::
_string
);
ASSERT_EQ
(
p0
.
type
(),
Type
::
INT
32
);
ASSERT_EQ
(
p1
.
type
(),
Type
::
FLOAT
32
);
ASSERT_EQ
(
p2
.
type
(),
Type
::
STRING
);
p0
.
set
(
2008
);
p0
.
Save
();
...
...
@@ -129,7 +129,7 @@ TEST(NBTestMsg, msg1) {
int0
->
set
(
2008
);
int0
->
Save
();
enum0
->
set
(
Type
::
_int
64
);
enum0
->
set
(
Type
::
INT
64
);
enum0
->
Save
();
SetMsg0
(
msg0
);
...
...
@@ -143,7 +143,7 @@ TEST(NBTestMsg, msg1) {
msg1
.
Load
();
ASSERT_EQ
(
msg
.
GetField
<
Int32Builder
>
(
"int0"
).
data
(),
2008
);
ASSERT_EQ
(
msg
.
GetField
<
enum_builder
>
(
"enum0"
).
data
(),
Type
::
_int
64
);
ASSERT_EQ
(
msg
.
GetField
<
enum_builder
>
(
"enum0"
).
data
(),
Type
::
INT
64
);
TestMsg0
(
msg1
.
GetField
<
NBTestMsg0
>
(
"msg0"
));
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录