Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
726d9af6
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看板
未验证
提交
726d9af6
编写于
9月 24, 2020
作者:
Y
ysh329
提交者:
GitHub
9月 24, 2020
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'release/v2.6' into cherry-pick-precision-profiler-enhance
上级
39fd5c8b
2425f9a1
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
16 addition
and
8 deletion
+16
-8
lite/core/memory.h
lite/core/memory.h
+10
-8
lite/core/memory_test.cc
lite/core/memory_test.cc
+6
-0
未找到文件。
lite/core/memory.h
浏览文件 @
726d9af6
...
...
@@ -13,6 +13,7 @@
// limitations under the License.
#pragma once
#include <algorithm>
#include <string>
#include "lite/api/paddle_place.h"
#include "lite/core/target_wrapper.h"
...
...
@@ -135,20 +136,21 @@ class Buffer {
#ifdef LITE_WITH_OPENCL
template
<
typename
T
>
void
ResetLazyImage2D
(
TargetType
target
,
const
size_t
img_w
,
const
size_t
img_h
,
const
size_t
img_w
_req
,
const
size_t
img_h
_req
,
void
*
host_ptr
=
nullptr
)
{
if
(
target
!=
target_
||
cl_image2d_width_
<
img_w
||
cl_image2d_height_
<
img_h
||
host_ptr
!=
nullptr
)
{
if
(
target
!=
target_
||
cl_image2d_width_
<
img_w
_req
||
cl_image2d_height_
<
img_h
_req
||
host_ptr
!=
nullptr
)
{
CHECK_EQ
(
own_data_
,
true
)
<<
"Can not reset unowned buffer."
;
cl_image2d_width_
=
std
::
max
(
cl_image2d_width_
,
img_w_req
);
cl_image2d_height_
=
std
::
max
(
cl_image2d_height_
,
img_h_req
);
Free
();
data_
=
TargetWrapperCL
::
MallocImage
<
T
>
(
img_w
,
img_h
,
host_ptr
);
data_
=
TargetWrapperCL
::
MallocImage
<
T
>
(
cl_image2d_width_
,
cl_image2d_height_
,
host_ptr
);
target_
=
target
;
space_
=
sizeof
(
T
)
*
img_w
*
img_h
*
space_
=
sizeof
(
T
)
*
cl_image2d_width_
*
cl_image2d_height_
*
4
;
// un-used for opencl Image2D, 4 for RGBA,
cl_use_image2d_
=
true
;
cl_image2d_width_
=
img_w
;
cl_image2d_height_
=
img_h
;
}
}
#endif
...
...
lite/core/memory_test.cc
浏览文件 @
726d9af6
...
...
@@ -28,6 +28,12 @@ TEST(memory, test) {
ASSERT_TRUE
(
buf_cuda
);
TargetFree
(
TARGET
(
kCUDA
),
buf_cuda
);
#endif
#ifdef LITE_WITH_OPENCL
auto
*
buf_cl
=
TargetMalloc
(
TARGET
(
kOpenCL
),
10
);
ASSERT_TRUE
(
buf_cl
);
TargetFree
(
TARGET
(
kOpenCL
),
buf_cl
);
#endif
}
}
// namespace lite
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录