Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
f6e1c268
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看板
提交
f6e1c268
编写于
9月 03, 2019
作者:
Z
zp7
提交者:
Yanzhan Yang
9月 03, 2019
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix compile error (#1955)
上级
833c405d
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
4 addition
and
4 deletion
+4
-4
mobile/test/operators/test_gru_op.cpp
mobile/test/operators/test_gru_op.cpp
+2
-2
mobile/test/operators/test_pool_op.cpp
mobile/test/operators/test_pool_op.cpp
+1
-1
mobile/test/operators/test_sequence_pool_op.cpp
mobile/test/operators/test_sequence_pool_op.cpp
+1
-1
未找到文件。
mobile/test/operators/test_gru_op.cpp
浏览文件 @
f6e1c268
...
...
@@ -67,8 +67,8 @@ int TestGruOp(int in_channels, int out_channels, std::string opname) {
auto
hidden_var
=
scope
.
get
()
->
Var
(
"output_hidden"
);
framework
::
AttributeMap
attrs
;
attrs
[
"activation"
].
Set
String
(
std
::
string
(
"relu"
));
attrs
[
"gate_activation"
].
Set
String
(
std
::
string
(
"sigmoid"
));
attrs
[
"activation"
].
Set
<
std
::
string
>
(
std
::
string
(
"relu"
));
attrs
[
"gate_activation"
].
Set
<
std
::
string
>
(
std
::
string
(
"sigmoid"
));
attrs
[
"is_reverse"
].
Set
<
bool
>
(
false
);
auto
*
op
=
new
operators
::
GruOp
<
CPU
,
float
>
(
"gru"
,
inputs
,
outputs
,
attrs
,
...
...
mobile/test/operators/test_pool_op.cpp
浏览文件 @
f6e1c268
...
...
@@ -55,7 +55,7 @@ int TestPoolOp(int in_channels, int in_height, int in_width) {
auto
output_var
=
scope
.
get
()
->
Var
(
"output"
);
framework
::
AttributeMap
attrs
;
attrs
[
"pooling_type"
].
Set
String
(
pooling_type
);
attrs
[
"pooling_type"
].
Set
<
std
::
string
>
(
pooling_type
);
attrs
[
"ksize"
].
Set
<
vector
<
int
>>
(
std
::
vector
<
int
>
({
kernel_h
,
kernel_w
}));
attrs
[
"strides"
].
Set
<
vector
<
int
>>
(
std
::
vector
<
int
>
({
stride_h
,
stride_w
}));
attrs
[
"paddings"
].
Set
<
vector
<
int
>>
(
std
::
vector
<
int
>
({
pad_h
,
pad_w
}));
...
...
mobile/test/operators/test_sequence_pool_op.cpp
浏览文件 @
f6e1c268
...
...
@@ -36,7 +36,7 @@ int TestSequencePoolOp(const framework::LoDTensor &input_x,
auto
output_var
=
scope
.
get
()
->
Var
(
"output"
);
framework
::
AttributeMap
attrs
;
attrs
[
"pooltype"
].
Set
String
(
pool_type
);
attrs
[
"pooltype"
].
Set
<
std
::
string
>
(
pool_type
);
auto
*
op
=
new
operators
::
SequencePoolOp
<
CPU
,
float
>
(
"sequence_pool"
,
inputs
,
outputs
,
attrs
,
scope
.
get
());
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录