Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Crayon鑫
Paddle
提交
155ebbb9
P
Paddle
项目概览
Crayon鑫
/
Paddle
与 Fork 源项目一致
Fork自
PaddlePaddle / Paddle
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
155ebbb9
编写于
9月 19, 2018
作者:
Y
Yu Yang
提交者:
GitHub
9月 19, 2018
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #13449 from chengduoZH/speed_up_lod_tensor_to_array
Speed up lod_tensor to array and array to lod_tensor
上级
93456fc6
7b464d68
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
131 addition
and
25 deletion
+131
-25
paddle/fluid/operators/array_to_lod_tensor_op.cc
paddle/fluid/operators/array_to_lod_tensor_op.cc
+57
-13
paddle/fluid/operators/cross_entropy_op.h
paddle/fluid/operators/cross_entropy_op.h
+4
-4
paddle/fluid/operators/lod_tensor_to_array_op.cc
paddle/fluid/operators/lod_tensor_to_array_op.cc
+70
-8
未找到文件。
paddle/fluid/operators/array_to_lod_tensor_op.cc
浏览文件 @
155ebbb9
...
...
@@ -11,6 +11,7 @@ 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 <paddle/fluid/operators/math/concat.h>
#include <numeric>
#include "paddle/fluid/framework/lod_rank_table.h"
...
...
@@ -24,6 +25,50 @@ namespace operators {
using
LoD
=
framework
::
LoD
;
class
ArrayToLoDFunctor
;
template
<
typename
DeviceContext
>
struct
ArrayToLoDFunctorImpl
{
const
ArrayToLoDFunctor
*
prev_functor_
;
DeviceContext
*
dev_ctx_
;
template
<
typename
T
>
void
apply
();
};
struct
ArrayToLoDFunctor
:
public
boost
::
static_visitor
<
void
>
{
std
::
vector
<
framework
::
Tensor
>
in
;
mutable
framework
::
Tensor
*
out
;
template
<
typename
Place
>
void
operator
()(
Place
place
)
const
{
auto
&
pool
=
platform
::
DeviceContextPool
::
Instance
();
if
(
std
::
is_same
<
Place
,
platform
::
CPUPlace
>::
value
)
{
Apply
(
static_cast
<
platform
::
CPUDeviceContext
*>
(
pool
.
Get
(
place
)));
}
else
{
#ifdef PADDLE_WITH_CUDA
Apply
(
static_cast
<
platform
::
CUDADeviceContext
*>
(
pool
.
Get
(
place
)));
#else
PADDLE_THROW
(
"Fluid is not compiled with CUDA"
);
#endif
}
}
template
<
typename
DeviceContext
>
void
Apply
(
DeviceContext
*
dev_ctx
)
const
{
ArrayToLoDFunctorImpl
<
DeviceContext
>
functor
;
functor
.
dev_ctx_
=
dev_ctx
;
functor
.
prev_functor_
=
this
;
framework
::
VisitDataType
(
framework
::
ToDataType
(
out
->
type
()),
functor
);
}
};
template
<
typename
DeviceContext
>
template
<
typename
T
>
void
ArrayToLoDFunctorImpl
<
DeviceContext
>::
apply
()
{
math
::
ConcatFunctor
<
DeviceContext
,
T
>
func
;
func
(
*
dev_ctx_
,
prev_functor_
->
in
,
0
,
prev_functor_
->
out
);
}
class
ArrayToLoDTensorOp
:
public
framework
::
OperatorBase
{
public:
ArrayToLoDTensorOp
(
const
std
::
string
&
type
,
...
...
@@ -47,14 +92,18 @@ class ArrayToLoDTensorOp : public framework::OperatorBase {
int
rank
=
x
[
0
].
dims
().
size
();
platform
::
Place
place
=
x
[
0
].
place
();
std
::
type_index
data_type
=
x
[
0
].
type
();
framework
::
DDim
ins_dims
=
framework
::
slice_ddim
(
x
[
0
].
dims
(),
1
,
rank
);
int64_t
batch_size
=
x
[
0
].
dims
()[
0
];
framework
::
DDim
ins_dims
=
rank
>
1
?
framework
::
slice_ddim
(
x
[
0
].
dims
(),
1
,
rank
)
:
framework
::
make_ddim
({
0
});
for
(
size_t
i
=
1
;
i
<
x
.
size
();
++
i
)
{
PADDLE_ENFORCE_EQ
(
framework
::
slice_ddim
(
x
[
i
].
dims
(),
1
,
rank
),
ins_dims
,
auto
ins_i_dims
=
rank
>
1
?
framework
::
slice_ddim
(
x
[
i
].
dims
(),
1
,
rank
)
:
framework
::
make_ddim
({
0
});
PADDLE_ENFORCE_EQ
(
ins_i_dims
,
ins_dims
,
"The dimension of the %zu'th element in LoDTensorArray "
"differs from previous ones."
,
i
);
PADDLE_ENFORCE
(
platform
::
places_are_same_class
(
x
[
i
].
place
(),
place
)
,
PADDLE_ENFORCE
(
x
[
i
].
place
()
==
place
,
"The place class of the %zu'th element in LoDTensorArray "
"differs from previous ones."
,
i
);
...
...
@@ -82,13 +131,14 @@ class ArrayToLoDTensorOp : public framework::OperatorBase {
// Build LoDTensor `out`
framework
::
LoD
*
out_lod
=
out
->
mutable_lod
();
out_lod
->
clear
();
size_t
out_offset
=
0
;
auto
prefix_lod
=
rank_table
.
coarse_lod
();
prefix_lod
.
emplace_back
();
auto
&
cur_level_lod
=
prefix_lod
.
back
();
cur_level_lod
.
push_back
(
0
);
ArrayToLoDFunctor
functor
;
for
(
size_t
idx
:
table_item_idx
)
{
cur_level_lod
.
push_back
(
cur_level_lod
.
back
()
+
table_items
[
idx
].
length
);
PADDLE_ENFORCE_LE
(
table_items
[
idx
].
length
,
x
.
size
());
for
(
size_t
x_idx
=
0
;
x_idx
<
table_items
[
idx
].
length
;
++
x_idx
)
{
auto
lod_and_offset
=
framework
::
GetSubLoDAndAbsoluteOffset
(
x
[
x_idx
].
lod
(),
idx
,
idx
+
1
,
0
);
...
...
@@ -106,17 +156,11 @@ class ArrayToLoDTensorOp : public framework::OperatorBase {
if
(
len
==
0
)
{
continue
;
}
auto
slice
=
out
->
Slice
(
out_offset
,
out_offset
+
len
);
platform
::
DeviceContextPool
&
pool
=
platform
::
DeviceContextPool
::
Instance
();
auto
&
dev_ctx
=
*
pool
.
Get
(
place
);
framework
::
TensorCopy
(
x
[
x_idx
].
Slice
(
start_offset
,
end_offset
),
place
,
dev_ctx
,
&
slice
);
out_offset
+=
len
;
functor
.
in
.
emplace_back
(
x
[
x_idx
].
Slice
(
start_offset
,
end_offset
));
}
}
functor
.
out
=
out
;
platform
::
VisitPlace
(
place
,
functor
);
out_lod
->
insert
(
out_lod
->
begin
(),
prefix_lod
.
begin
(),
prefix_lod
.
end
());
}
};
...
...
paddle/fluid/operators/cross_entropy_op.h
浏览文件 @
155ebbb9
...
...
@@ -86,10 +86,10 @@ class XeGradFunctor {
auto
x_is_true_offset
=
sample_id
*
num_classes_
+
label_
[
sample_id
];
for
(
size_t
x_offset
=
sample_id
*
num_classes_
;
x_offset
<
(
sample_id
+
1
)
*
num_classes_
;
++
x_offset
)
{
dx_
[
x_offset
]
=
(
x_offset
!=
x_is_true_offset
||
label_
[
sample_id
]
==
ignore_index_
)
?
static_cast
<
T
>
(
0
)
:
-
dy_
[
sample_id
]
/
x_
[
x_offset
];
dx_
[
x_offset
]
=
(
x_offset
!=
x_is_true_offset
||
label_
[
sample_id
]
==
static_cast
<
int64_t
>
(
ignore_index_
)
)
?
static_cast
<
T
>
(
0
)
:
-
dy_
[
sample_id
]
/
x_
[
x_offset
];
}
}
...
...
paddle/fluid/operators/lod_tensor_to_array_op.cc
浏览文件 @
155ebbb9
...
...
@@ -11,10 +11,13 @@ 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 <algorithm>
#include <map>
#include "paddle/fluid/framework/lod_rank_table.h"
#include "paddle/fluid/framework/lod_tensor_array.h"
#include "paddle/fluid/framework/op_registry.h"
#include "paddle/fluid/operators/detail/safe_ref.h"
#include "paddle/fluid/operators/math/concat.h"
#include "paddle/fluid/platform/device_context.h"
#include "paddle/fluid/platform/port.h"
...
...
@@ -26,6 +29,61 @@ struct CopyRange {
size_t
end
;
};
struct
LoDTensorToArrayFunctor
;
template
<
typename
DeviceContext
>
struct
LoDTensorToArrayFunctorImpl
{
const
LoDTensorToArrayFunctor
*
prev_functor_
;
DeviceContext
*
dev_ctx_
;
template
<
typename
T
>
void
apply
();
};
struct
LoDTensorToArrayFunctor
:
public
boost
::
static_visitor
<
void
>
{
std
::
vector
<
const
framework
::
Tensor
*>
ref_inputs_
;
mutable
std
::
vector
<
framework
::
Tensor
*>
outputs_
;
const
framework
::
Tensor
&
input_
;
explicit
LoDTensorToArrayFunctor
(
const
framework
::
Tensor
&
input
)
:
input_
(
input
)
{}
void
AddOutput
(
framework
::
Tensor
*
t
)
{
outputs_
.
emplace_back
(
t
);
ref_inputs_
.
emplace_back
(
t
);
}
template
<
typename
Place
>
void
operator
()(
Place
place
)
const
{
auto
&
pool
=
platform
::
DeviceContextPool
::
Instance
();
auto
*
dev_ctx
=
pool
.
Get
(
place
);
if
(
std
::
is_same
<
Place
,
platform
::
CPUPlace
>::
value
)
{
Apply
(
static_cast
<
platform
::
CPUDeviceContext
*>
(
dev_ctx
));
}
else
{
#ifdef PADDLE_WITH_CUDA
Apply
(
static_cast
<
platform
::
CUDADeviceContext
*>
(
dev_ctx
));
#else
PADDLE_THROW
(
"Not compiled with cuda"
);
#endif
}
}
template
<
typename
DeviceContext
>
void
Apply
(
DeviceContext
*
dev_ctx
)
const
{
LoDTensorToArrayFunctorImpl
<
DeviceContext
>
func
;
func
.
prev_functor_
=
this
;
func
.
dev_ctx_
=
dev_ctx
;
framework
::
VisitDataType
(
framework
::
ToDataType
(
input_
.
type
()),
func
);
}
};
template
<
typename
DeviceContext
>
template
<
typename
T
>
void
LoDTensorToArrayFunctorImpl
<
DeviceContext
>::
apply
()
{
math
::
ConcatGradFunctor
<
DeviceContext
,
T
>
func
;
func
(
*
dev_ctx_
,
prev_functor_
->
input_
,
prev_functor_
->
ref_inputs_
,
0
,
&
prev_functor_
->
outputs_
);
}
class
LoDTensorToArrayOp
:
public
framework
::
OperatorBase
{
public:
LoDTensorToArrayOp
(
const
std
::
string
&
type
,
...
...
@@ -72,6 +130,11 @@ class LoDTensorToArrayOp : public framework::OperatorBase {
copy_ranges
[
t
].
emplace_back
(
CopyRange
{
start_offset
,
end_offset
});
}
}
auto
&
outputs
=
*
const_cast
<
framework
::
Scope
&>
(
scope
)
.
Var
()
->
GetMutable
<
std
::
map
<
size_t
,
framework
::
Tensor
>>
();
for
(
size_t
i
=
0
;
i
<
max_seq_len
;
++
i
)
{
auto
&
ranges
=
copy_ranges
[
i
];
size_t
height
=
std
::
accumulate
(
...
...
@@ -90,17 +153,16 @@ class LoDTensorToArrayOp : public framework::OperatorBase {
// out[i][offset: offset+len] = x[each_range.begin: each_range.end]
auto
slice
=
out
[
i
].
Slice
(
static_cast
<
int
>
(
offset
),
static_cast
<
int
>
(
offset
+
len
));
platform
::
DeviceContextPool
&
pool
=
platform
::
DeviceContextPool
::
Instance
();
auto
&
dev_ctx
=
*
pool
.
Get
(
place
);
framework
::
TensorCopy
(
x
.
Slice
(
static_cast
<
int
>
(
each_range
.
begin
),
static_cast
<
int
>
(
each_range
.
end
)),
x
.
place
(),
dev_ctx
,
&
slice
);
outputs
.
insert
({
each_range
.
begin
,
slice
});
offset
+=
len
;
}
}
LoDTensorToArrayFunctor
functor
(
x
);
for
(
auto
&
out_pair
:
outputs
)
{
functor
.
AddOutput
(
&
out_pair
.
second
);
}
platform
::
VisitPlace
(
place
,
functor
);
}
};
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录