Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
cb246fc8
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看板
未验证
提交
cb246fc8
编写于
12月 31, 2019
作者:
J
juncaipeng
提交者:
GitHub
12月 31, 2019
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix mask rcnn error when run twice, test=develop (#2675) (#2709)
add clear for tensor
上级
d56f25df
变更
4
显示空白变更内容
内联
并排
Showing
4 changed file
with
12 addition
and
0 deletion
+12
-0
lite/core/memory.h
lite/core/memory.h
+1
-0
lite/core/tensor.h
lite/core/tensor.h
+4
-0
lite/kernels/arm/conditional_block_compute.cc
lite/kernels/arm/conditional_block_compute.cc
+3
-0
lite/kernels/arm/split_lod_tensor_compute.cc
lite/kernels/arm/split_lod_tensor_compute.cc
+4
-0
未找到文件。
lite/core/memory.h
浏览文件 @
cb246fc8
...
...
@@ -120,6 +120,7 @@ class Buffer {
if
(
space_
>
0
)
{
TargetFree
(
target_
,
data_
);
}
data_
=
nullptr
;
target_
=
TargetType
::
kHost
;
space_
=
0
;
}
...
...
lite/core/tensor.h
浏览文件 @
cb246fc8
...
...
@@ -176,6 +176,10 @@ class TensorLite {
(
static_cast
<
char
*>
(
buffer_
->
data
())
+
offset_
));
}
void
clear
()
{
buffer_
->
Free
();
offset_
=
0
;
}
size_t
data_size
()
const
{
return
this
->
dims
().
production
();
}
size_t
memory_size
()
const
{
return
memory_size_
;
}
...
...
lite/kernels/arm/conditional_block_compute.cc
浏览文件 @
cb246fc8
...
...
@@ -34,6 +34,9 @@ void ConditionalBlockCompute::PrepareForRun() {
}
void
ConditionalBlockCompute
::
Run
()
{
auto
&
param
=
Param
<
operators
::
ConditionalBlockParam
>
();
for
(
auto
&
out
:
param
.
outs
)
{
out
->
clear
();
}
bool
need_run
=
true
;
if
(
param
.
is_scalar_condition
)
{
auto
*
cond
=
param
.
cond
;
...
...
lite/kernels/arm/split_lod_tensor_compute.cc
浏览文件 @
cb246fc8
...
...
@@ -82,6 +82,10 @@ void SplitLodTensorCompute::Run() {
ranges
.
begin
(),
ranges
.
end
(),
0UL
,
[](
size_t
a
,
const
CopyRange
&
b
)
{
return
a
+
b
.
end
-
b
.
begin
;
});
if
(
height
==
0
)
{
out
->
clear
();
continue
;
}
auto
x_dim
=
x
->
dims
();
x_dim
[
0
]
=
static_cast
<
int64_t
>
(
height
);
out
->
Resize
(
x_dim
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录