Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
9f6f5166
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看板
提交
9f6f5166
编写于
9月 10, 2018
作者:
xiebaiyuan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
split op impl
上级
fc280daf
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
133 addition
and
6 deletion
+133
-6
src/operators/kernel/central-arm-func/split_arm_func.h
src/operators/kernel/central-arm-func/split_arm_func.h
+57
-1
src/operators/op_param.h
src/operators/op_param.h
+22
-3
src/operators/split_op.cpp
src/operators/split_op.cpp
+54
-1
src/operators/split_op.h
src/operators/split_op.h
+0
-1
未找到文件。
src/operators/kernel/central-arm-func/split_arm_func.h
浏览文件 @
9f6f5166
...
...
@@ -21,8 +21,64 @@ limitations under the License. */
namespace
paddle_mobile
{
namespace
operators
{
// Strided numel memory copy from src to dst by the specified axis
//
// For example, for a tensor dims [4, 20, 100], the strieded numel is
// [8000, 2000, 100]
//
// NOTE: The src and dst tensor should have the same elements
// except the specified axis.
template
<
typename
T
>
inline
void
StridedNumelCopyWithAxis
(
int64_t
axis
,
T
*
dst
,
const
framework
::
DDim
&
dst_stride_numel
,
const
T
*
src
,
const
framework
::
DDim
&
src_stride_numel
,
int64_t
size
)
{
int64_t
before
=
dst_stride_numel
[
0
]
/
dst_stride_numel
[
axis
];
int64_t
src_after
=
src_stride_numel
[
axis
];
int64_t
dst_after
=
dst_stride_numel
[
axis
];
PADDLE_MOBILE_ENFORCE
(
src_stride_numel
.
size
()
==
dst_stride_numel
.
size
(),
"src and dst tensor should have the same dims size."
);
for
(
int64_t
i
=
0
;
i
<
axis
;
++
i
)
{
if
(
i
<
axis
)
{
PADDLE_MOBILE_ENFORCE
(
src_stride_numel
[
i
]
/
src_stride_numel
[
axis
]
==
dst_stride_numel
[
i
]
/
dst_stride_numel
[
axis
],
"src and dst should have the same elements "
"except the specified axis."
);
}
else
if
(
i
==
axis
)
{
continue
;
}
else
{
PADDLE_MOBILE_ENFORCE
(
src_stride_numel
[
i
]
==
dst_stride_numel
[
i
],
"src and dst should have the same elements "
"except the specified axis."
);
}
}
for
(
int64_t
i
=
0
;
i
<
before
;
++
i
)
{
memory
::
Copy
(
dst
+
i
*
dst_after
,
src
+
i
*
src_after
,
sizeof
(
T
)
*
size
);
}
}
template
<
typename
P
>
void
SplitCompute
(
const
SplitParam
<
CPU
>&
param
)
{}
void
SplitCompute
(
const
SplitParam
<
CPU
>&
param
)
{
auto
*
in
=
param
.
InputX
();
auto
outs
=
param
.
Outs
();
auto
in_stride
=
framework
::
stride_numel
(
in
->
dims
());
int64_t
axis
=
param
.
Axis
();
size_t
input_offset
=
0
;
for
(
auto
&
out
:
outs
)
{
out
->
mutable_data
<
float
>
();
auto
out_stride
=
framework
::
stride_numel
(
out
->
dims
());
StridedNumelCopyWithAxis
<
float
>
(
axis
,
out
->
data
<
float
>
(),
out_stride
,
in
->
data
<
float
>
()
+
input_offset
,
in_stride
,
out_stride
[
axis
]);
input_offset
+=
out_stride
[
axis
];
}
}
}
// namespace operators
}
// namespace paddle_mobile
...
...
src/operators/op_param.h
浏览文件 @
9f6f5166
...
...
@@ -245,6 +245,12 @@ class OpParam {
return
GetVarValue
<
T
>
(
"Out"
,
outputs
,
scope
);
}
template
<
typename
T
>
static
vector
<
T
*>
OutMultiFrom
(
const
VariableNameMap
&
outputs
,
const
Scope
&
scope
)
{
return
GetMultiVarValue
<
T
>
(
"Out"
,
outputs
,
scope
);
}
template
<
typename
T
>
static
T
*
OutputYFrom
(
const
VariableNameMap
&
outputs
,
const
Scope
&
scope
)
{
return
GetVarValue
<
T
>
(
"Y"
,
outputs
,
scope
);
...
...
@@ -2291,16 +2297,29 @@ class SplitParam : public OpParam {
SplitParam
(
const
VariableNameMap
&
inputs
,
const
VariableNameMap
&
outputs
,
const
AttributeMap
&
attrs
,
const
Scope
&
scope
)
{
input_x_
=
InputXFrom
<
GType
>
(
inputs
,
scope
);
out
_
=
Out
From
<
GType
>
(
outputs
,
scope
);
out
s_
=
OutMulti
From
<
GType
>
(
outputs
,
scope
);
axis
=
GetAttr
<
int
>
(
"axis"
,
attrs
);
num
=
GetAttr
<
int
>
(
"num"
,
attrs
);
sections
=
GetAttr
<
std
::
vector
<
int
>>
(
"sections"
,
attrs
);
// for (int i = 0; i < outs_.size(); ++i) {
// out_ts_.push_back(*scope.FindVar(outs_[i])->GetMutable());
// }
}
const
RType
*
InputX
()
const
{
return
input_x_
;
}
RType
*
Out
()
const
{
return
out_
;
}
std
::
vector
<
GType
*>
Outs
()
const
{
return
outs_
;
}
int
Axis
()
const
{
return
axis
;
}
int
Num
()
const
{
return
num
;
}
std
::
vector
<
int
>
Sections
()
const
{
return
sections
;
}
// std::vector<GType> OutTs() const { return out_ts_; }
private:
RType
*
input_x_
;
RType
*
out
_
;
std
::
vector
<
GType
*>
outs
_
;
int
axis
;
int
num
;
std
::
vector
<
int
>
sections
;
// std::vector<GType> out_ts_;
};
#endif
...
...
src/operators/split_op.cpp
浏览文件 @
9f6f5166
...
...
@@ -18,9 +18,62 @@ limitations under the License. */
namespace
paddle_mobile
{
namespace
operators
{
template
<
typename
DeviceType
,
typename
T
>
void
SplitOp
<
DeviceType
,
T
>::
InferShape
()
const
{
this
->
param_
.
Out
()
->
Resize
(
this
->
param_
.
InputX
()
->
dims
());
PADDLE_MOBILE_ENFORCE
(
this
->
param_
.
InputX
()
!=
nullptr
,
"Input(X) of SplitOp should not be null."
);
// std::string str;
// str.size()
const
auto
&
outs
=
this
->
param_
.
Outs
();
PADDLE_MOBILE_ENFORCE
(
outs
.
size
()
>=
1UL
,
"Outputs(Out) of SplitOp should not be empty."
);
auto
in_dims
=
this
->
param_
.
InputX
()
->
dims
();
size_t
axis
=
static_cast
<
size_t
>
(
this
->
param_
.
Axis
());
size_t
num
=
static_cast
<
size_t
>
(
this
->
param_
.
Num
());
const
auto
&
sections
=
this
->
param_
.
Sections
();
const
size_t
outs_number
=
outs
.
size
();
std
::
vector
<
framework
::
DDim
>
outs_dims
;
outs_dims
.
reserve
(
outs_number
);
if
(
num
>
0
)
{
int64_t
in_axis_dim
=
in_dims
[
axis
];
PADDLE_MOBILE_ENFORCE
(
in_axis_dim
%
num
==
0
,
"tensor split does not result"
" in an equal division"
);
size_t
out_axis_dim
=
in_axis_dim
/
num
;
for
(
size_t
i
=
0
;
i
<
outs_number
;
++
i
)
{
auto
dim
=
in_dims
;
dim
[
axis
]
=
out_axis_dim
;
outs_dims
.
push_back
(
dim
);
}
}
else
if
(
sections
.
size
()
>
0
)
{
PADDLE_MOBILE_ENFORCE
(
sections
.
size
()
==
outs_number
,
"tensor split sections size"
"should be equal to output size."
);
for
(
size_t
i
=
0
;
i
<
outs_number
;
++
i
)
{
auto
dim
=
in_dims
;
dim
[
axis
]
=
sections
[
i
];
outs_dims
.
push_back
(
dim
);
}
}
PADDLE_MOBILE_ENFORCE
(
outs_dims
.
size
()
==
outs
.
size
(),
"length==dims.size() must be true!"
);
for
(
int
j
=
0
;
j
<
outs_dims
.
size
();
++
j
)
{
outs
[
j
]
->
Resize
(
outs_dims
[
j
]);
}
// todo lod impl
// if (axis != 0) {
// // Only pass LoD when not spliting along the first dim.
// for (size_t i = 0; i < outs_number; ++i) {
// ctx->ShareLoD("X", "Out", 0, i);
// }
// }
}
}
// namespace operators
...
...
src/operators/split_op.h
浏览文件 @
9f6f5166
...
...
@@ -44,7 +44,6 @@ class SplitOp : public framework::OperatorWithKernel<
operators
::
SplitKernel
<
DeviceType
,
T
>>::
OperatorWithKernel
;
void
InferShape
()
const
override
;
};
}
// namespace operators
}
// namespace paddle_mobile
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录