Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
1da3fcee
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看板
提交
1da3fcee
编写于
10月 18, 2018
作者:
Y
yangfei
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add some function
上级
af1c0a52
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
83 addition
and
31 deletion
+83
-31
src/framework/cl/cl_image.cpp
src/framework/cl/cl_image.cpp
+3
-3
src/framework/executor.cpp
src/framework/executor.cpp
+1
-1
src/operators/kernel/arm/feed_kernel.cpp
src/operators/kernel/arm/feed_kernel.cpp
+12
-14
src/operators/kernel/fpga/feed_kernel.cpp
src/operators/kernel/fpga/feed_kernel.cpp
+55
-0
src/operators/kernel/mali/feed_kernel.cpp
src/operators/kernel/mali/feed_kernel.cpp
+12
-13
未找到文件。
src/framework/cl/cl_image.cpp
浏览文件 @
1da3fcee
...
...
@@ -183,7 +183,7 @@ Print &operator<<(Print &printer, const CLImage &cl_image) {
}
i0
+=
width
*
H
;
}
delete
[]
(
imageData
);
delete
(
imageData
);
CL_CHECK_ERRORS
(
err
);
}
else
{
...
...
@@ -213,14 +213,14 @@ Print &operator<<(Print &printer, const CLImage &cl_image) {
}
}
delete
[]
(
imageData
);
delete
(
imageData
);
CL_CHECK_ERRORS
(
err
);
}
for
(
int
i
=
0
;
i
<
cl_image
.
numel
();
i
+=
stride
)
{
printer
<<
data
[
i
]
<<
" "
;
}
delete
[]
(
data
);
delete
(
data
);
return
printer
;
}
#endif
...
...
src/framework/executor.cpp
浏览文件 @
1da3fcee
...
...
@@ -948,7 +948,7 @@ void Executor<GPU_CL, Precision::FP32>::InitMemory() {
cl_image
->
SetTensorData
(
tensorInput
,
ddim
);
delete
origin_data
;
//
paddle_mobile::memory::Free(tensorInput);
paddle_mobile
::
memory
::
Free
(
tensorInput
);
}
else
{
if
(
var_desc
->
Type
()
==
framework
::
VARTYPE_TYPE_LOD_TENSOR
)
{
auto
cl_image
=
var
->
template
GetMutable
<
framework
::
CLImage
>();
...
...
src/operators/kernel/arm/feed_kernel.cpp
浏览文件 @
1da3fcee
...
...
@@ -12,25 +12,23 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. */
#include "operators/kernel/feed_kernel.h"
namespace
paddle_mobile
{
namespace
operators
{
namespace
operators
{
template
<
>
bool
FeedKernel
<
CPU
,
float
>::
Init
(
FeedParam
<
CPU
>
*
param
)
{
return
true
;
}
template
<
>
bool
FeedKernel
<
CPU
,
float
>::
Init
(
FeedParam
<
CPU
>
*
param
)
{
return
true
;
}
template
<
>
void
FeedKernel
<
CPU
,
float
>::
Compute
(
const
FeedParam
<
CPU
>
&
param
)
{
param
.
Out
()
->
ShareDataWith
(
*
(
param
.
InputX
()));
param
.
Out
()
->
set_lod
(
param
.
InputX
()
->
lod
());
}
template
<
>
void
FeedKernel
<
CPU
,
float
>::
Compute
(
const
FeedParam
<
CPU
>
&
param
)
{
param
.
Out
()
->
ShareDataWith
(
*
(
param
.
InputX
()));
param
.
Out
()
->
set_lod
(
param
.
InputX
()
->
lod
());
}
template
class
FeedKernel
<
CPU
,
float
>;
template
class
FeedKernel
<
CPU
,
float
>;
}
// namespace operators
}
// namespace operators
}
// namespace paddle_mobile
src/operators/kernel/fpga/feed_kernel.cpp
0 → 100644
浏览文件 @
1da3fcee
/* Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. */
#include "operators/kernel/feed_kernel.h"
namespace
paddle_mobile
{
namespace
operators
{
template
<
>
bool
FeedKernel
<
FPGA
,
float
>::
Init
(
FeedParam
<
FPGA
>
*
param
)
{
Tensor
*
output
=
param
->
Out
();
fpga
::
format_fp16_ofm
(
output
);
return
true
;
}
template
<
>
void
FeedKernel
<
FPGA
,
float
>::
Compute
(
const
FeedParam
<
FPGA
>
&
param
)
{
auto
input
=
reinterpret_cast
<
Tensor
*>
(
const_cast
<
LoDTensor
*>
(
param
.
InputX
()));
auto
input_ptr
=
input
->
data
<
float
>
();
fpga
::
format_image
(
input
);
Tensor
*
output
=
param
.
Out
();
auto
output_ptr
=
output
->
data
<
float
>
();
fpga
::
BypassArgs
args
=
{
fpga
::
DATA_TYPE_FP32
};
args
.
input_data_type
=
fpga
::
DATA_TYPE_FP32
;
args
.
output_data_type
=
fpga
::
DATA_TYPE_FP16
;
args
.
input_layout_type
=
fpga
::
LAYOUT_CHW
;
args
.
output_layout_type
=
fpga
::
LAYOUT_HWC
;
args
.
image
.
address
=
reinterpret_cast
<
void
*>
(
input_ptr
);
args
.
image
.
channels
=
(
uint32_t
)
input
->
dims
()[
1
];
args
.
image
.
height
=
(
uint32_t
)
input
->
dims
()[
2
];
args
.
image
.
width
=
(
uint32_t
)
input
->
dims
()[
3
];
args
.
image
.
pad_height
=
0
;
args
.
image
.
pad_width
=
0
;
args
.
output
.
address
=
output_ptr
;
args
.
output
.
scale_address
=
output
->
scale
;
fpga
::
PerformBypass
(
args
);
}
template
class
FeedKernel
<
FPGA
,
float
>;
}
// namespace operators
}
// namespace paddle_mobile
src/operators/kernel/mali/feed_kernel.cpp
浏览文件 @
1da3fcee
...
...
@@ -15,23 +15,22 @@ limitations under the License. */
#include "operators/kernel/feed_kernel.h"
namespace
paddle_mobile
{
namespace
operators
{
namespace
operators
{
template
<
>
bool
FeedKernel
<
GPU_MALI
,
float
>::
Init
(
FeedParam
<
GPU_MALI
>
*
param
)
{
return
true
;
}
template
<
>
bool
FeedKernel
<
GPU_MALI
,
float
>::
Init
(
FeedParam
<
GPU_MALI
>
*
param
)
{
return
true
;
}
template
<
>
void
FeedKernel
<
GPU_MALI
,
float
>::
Compute
(
const
FeedParam
<
GPU_MALI
>
&
param
)
{
param
.
Out
()
->
ShareDataWith
(
*
(
param
.
InputX
()));
param
.
Out
()
->
set_lod
(
param
.
InputX
()
->
lod
())
;
}
template
<
>
void
FeedKernel
<
GPU_MALI
,
float
>::
Compute
(
const
FeedParam
<
GPU_MALI
>
&
param
)
{
}
template
class
FeedKernel
<
GPU_MALI
,
float
>;
template
class
FeedKernel
<
GPU_MALI
,
float
>;
}
// namespace operators
}
// namespace operators
}
// namespace paddle_mobile
#endif
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录