Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
f05e444a
P
Paddle
项目概览
PaddlePaddle
/
Paddle
1 年多 前同步成功
通知
2302
Star
20931
Fork
5422
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1423
列表
看板
标记
里程碑
合并请求
543
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1,423
Issue
1,423
列表
看板
标记
里程碑
合并请求
543
合并请求
543
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
f05e444a
编写于
9月 09, 2021
作者:
C
crystal
提交者:
GitHub
9月 09, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
optimization of index_select forward op (#32863)
上级
81e702ac
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
48 addition
and
52 deletion
+48
-52
paddle/fluid/operators/index_select_op.h
paddle/fluid/operators/index_select_op.h
+48
-52
未找到文件。
paddle/fluid/operators/index_select_op.h
浏览文件 @
f05e444a
...
...
@@ -15,10 +15,8 @@
#pragma once
#include <vector>
#include "paddle/fluid/framework/op_registry.h"
#include "paddle/fluid/operators/jit/macro.h"
#include "paddle/fluid/operators/math/blas.h"
#include "paddle/fluid/operators/math/math_function.h"
#include "paddle/fluid/platform/cpu_info.h"
namespace
paddle
{
namespace
operators
{
...
...
@@ -27,69 +25,69 @@ using Tensor = framework::Tensor;
using
LoDTensor
=
framework
::
LoDTensor
;
using
DDim
=
framework
::
DDim
;
template
<
typename
T
,
typename
IndexT
=
int
>
template
<
typename
DeviceContext
,
typename
T
,
typename
IndexT
=
int
>
void
IndexSelectInner
(
const
framework
::
ExecutionContext
&
context
,
const
LoDTensor
&
input
,
const
LoDTensor
&
index
,
LoDTensor
*
input
,
const
LoDTensor
&
index
,
LoDTensor
*
output
,
int
dim
)
{
auto
input_dim
=
input
.
dims
();
auto
input_dim
=
input
->
dims
();
auto
input_dim_size
=
input_dim
.
size
();
auto
output_dim
=
output
->
dims
();
auto
index_size
=
index
.
dims
()[
0
];
LoDTensor
index_cpu_copy
;
if
(
!
platform
::
is_cpu_place
(
index
.
place
()))
{
framework
::
TensorCopySync
(
index
,
platform
::
CPUPlace
(),
&
index_cpu_copy
);
}
const
IndexT
*
index_data
=
platform
::
is_cpu_place
(
index
.
place
())
?
index
.
data
<
IndexT
>
()
:
index_cpu_copy
.
data
<
IndexT
>
();
output
->
mutable_data
<
T
>
(
context
.
GetPlace
());
auto
slice_size
=
1
;
for
(
auto
i
=
dim
+
1
;
i
<
input_dim_size
;
i
++
)
{
slice_size
*=
input_dim
[
i
];
}
auto
input_width
=
slice_size
*
input_dim
[
dim
];
auto
output_width
=
slice_size
*
output_dim
[
dim
];
auto
outer_nums
=
1
;
for
(
auto
i
=
0
;
i
<
dim
;
i
++
)
{
outer_nums
*=
input_dim
[
i
];
}
auto
index_size
=
index
.
dims
()[
0
];
std
::
vector
<
T
>
input_vec
;
std
::
vector
<
IndexT
>
index_vec
;
TensorToVector
(
input
,
context
.
device_context
(),
&
input_vec
);
TensorToVector
(
index
,
context
.
device_context
(),
&
index_vec
);
std
::
vector
<
T
>
out_vec
(
output
->
numel
());
for
(
int
i
=
0
;
i
<
index_size
;
i
++
)
{
PADDLE_ENFORCE_GE
(
index_
vec
[
i
],
0
,
index_
data
[
i
],
0
,
platform
::
errors
::
InvalidArgument
(
"Variable value (index) of OP(index_select) "
"expected >= 0 and < %ld, but got %ld. Please check input "
"value."
,
input_dim
[
dim
],
index_
vec
[
i
]));
input_dim
[
dim
],
index_
data
[
i
]));
PADDLE_ENFORCE_LT
(
index_
vec
[
i
],
input_dim
[
dim
],
index_
data
[
i
],
input_dim
[
dim
],
platform
::
errors
::
InvalidArgument
(
"Variable value (index) of OP(index_select) "
"expected >= 0 and < %ld, but got %ld. Please check input "
"value."
,
input_dim
[
dim
],
index_
vec
[
i
]));
input_dim
[
dim
],
index_
data
[
i
]));
}
VLOG
(
3
)
<<
"Index_Select_Debug; outer_nums: "
<<
outer_nums
<<
"; slice_size: "
<<
slice_size
<<
"; input_width: "
<<
input_width
<<
"; output_width: "
<<
output_width
<<
"; index_size: "
<<
index_size
;
<<
"; slice_size: "
<<
slice_size
<<
"; index_size: "
<<
index_size
;
for
(
auto
i
=
0
;
i
<
outer_nums
;
i
++
)
{
auto
input_start_offset
=
i
*
input_width
;
auto
output_start_offset
=
i
*
output_width
;
for
(
auto
j
=
0
;
j
<
index_size
;
j
++
)
{
IndexT
index_value
=
index_vec
[
j
];
for
(
auto
k
=
0
;
k
<
slice_size
;
k
++
)
{
out_vec
[
output_start_offset
+
j
*
slice_size
+
k
]
=
input_vec
[
input_start_offset
+
index_value
*
slice_size
+
k
];
}
}
input
->
Resize
(
framework
::
make_ddim
({
outer_nums
,
input_dim
[
dim
],
slice_size
}));
output
->
Resize
(
framework
::
make_ddim
({
outer_nums
,
index_size
,
slice_size
}));
auto
input_tensor
=
framework
::
EigenTensor
<
T
,
3
>::
From
(
*
input
);
auto
output_tensor
=
framework
::
EigenTensor
<
T
,
3
>::
From
(
*
output
);
auto
&
place
=
*
context
.
template
device_context
<
DeviceContext
>().
eigen_device
();
for
(
auto
j
=
0
;
j
<
index_size
;
j
++
)
{
IndexT
index_value
=
index_data
[
j
];
auto
output_t
=
output_tensor
.
chip
(
j
,
1
);
output_t
.
device
(
place
)
=
input_tensor
.
chip
(
index_value
,
1
);
}
output
->
mutable_data
<
T
>
(
context
.
GetPlace
());
framework
::
TensorFromVector
(
out_vec
,
context
.
device_context
(),
output
);
input
->
Resize
(
input_dim
);
output
->
Resize
(
output_dim
);
}
...
...
@@ -97,19 +95,15 @@ template <typename DeviceContext, typename T>
class
IndexSelectKernel
:
public
framework
::
OpKernel
<
T
>
{
public:
void
Compute
(
const
framework
::
ExecutionContext
&
context
)
const
override
{
auto
*
inputs_var
=
context
.
InputVar
(
"X"
);
auto
*
index_var
=
context
.
InputVar
(
"Index"
);
auto
*
output_var
=
context
.
OutputVar
(
"Out"
);
auto
&
inputs
=
inputs_var
->
Get
<
LoDTensor
>
();
auto
&
index
=
index_var
->
Get
<
LoDTensor
>
();
auto
*
output
=
output_var
->
GetMutable
<
framework
::
LoDTensor
>
();
auto
inputs
=
*
context
.
Input
<
framework
::
LoDTensor
>
(
"X"
);
auto
*
index
=
context
.
Input
<
framework
::
LoDTensor
>
(
"Index"
);
auto
*
output
=
context
.
Output
<
framework
::
LoDTensor
>
(
"Out"
);
int
dim
=
context
.
Attr
<
int
>
(
"dim"
);
if
(
dim
<
0
)
{
dim
+=
inputs
.
dims
().
size
();
}
const
auto
&
index_type
=
index
.
type
();
const
auto
&
index_type
=
index
->
type
();
bool
index_type_match
=
index_type
==
framework
::
proto
::
VarType
::
INT32
||
index_type
==
framework
::
proto
::
VarType
::
INT64
;
PADDLE_ENFORCE_EQ
(
index_type_match
,
true
,
...
...
@@ -123,9 +117,11 @@ class IndexSelectKernel : public framework::OpKernel<T> {
framework
::
proto
::
VarType
::
INT64
)));
if
(
index_type
==
framework
::
proto
::
VarType
::
INT32
)
{
IndexSelectInner
<
T
,
int
>
(
context
,
inputs
,
index
,
output
,
dim
);
IndexSelectInner
<
DeviceContext
,
T
,
int
>
(
context
,
&
inputs
,
*
index
,
output
,
dim
);
}
else
if
(
index_type
==
framework
::
proto
::
VarType
::
INT64
)
{
IndexSelectInner
<
T
,
int64_t
>
(
context
,
inputs
,
index
,
output
,
dim
);
IndexSelectInner
<
DeviceContext
,
T
,
int64_t
>
(
context
,
&
inputs
,
*
index
,
output
,
dim
);
}
}
};
...
...
@@ -152,13 +148,13 @@ struct IndexSelectAdd<
template
<
typename
DeviceContext
,
typename
T
,
typename
IndexT
=
int
>
void
IndexSelectGradInner
(
const
framework
::
ExecutionContext
&
context
,
const
LoDTensor
*
out_grad
,
const
LoDTensor
*
index
,
const
LoDTensor
&
out_grad
,
const
LoDTensor
&
index
,
LoDTensor
*
x_grad
,
int
dim
)
{
const
T
*
input_data
=
out_grad
->
data
<
T
>
();
const
IndexT
*
index_data
=
index
->
data
<
IndexT
>
();
const
T
*
input_data
=
out_grad
.
data
<
T
>
();
const
IndexT
*
index_data
=
index
.
data
<
IndexT
>
();
const
T
*
p_output
=
x_grad
->
mutable_data
<
T
>
(
context
.
GetPlace
());
T
*
out_data
=
x_grad
->
mutable_data
<
T
>
(
context
.
GetPlace
());
auto
input_dim
=
out_grad
->
dims
();
auto
input_dim
=
out_grad
.
dims
();
auto
input_dim_size
=
input_dim
.
size
();
auto
output_dim
=
x_grad
->
dims
();
...
...
@@ -179,7 +175,7 @@ void IndexSelectGradInner(const framework::ExecutionContext& context,
outer_nums
*=
input_dim
[
i
];
}
auto
index_size
=
index
->
dims
()[
0
];
auto
index_size
=
index
.
dims
()[
0
];
VLOG
(
3
)
<<
"Index_Select_Grad_Debug; outer_nums: "
<<
outer_nums
<<
"; slice_size: "
<<
slice_size
<<
"; input_width: "
<<
input_width
<<
"; output_width: "
<<
output_width
...
...
@@ -230,11 +226,11 @@ class IndexSelectGradKernel : public framework::OpKernel<T> {
framework
::
proto
::
VarType
::
INT64
)));
if
(
index_type
==
framework
::
proto
::
VarType
::
INT32
)
{
IndexSelectGradInner
<
DeviceContext
,
T
,
int
>
(
context
,
out_grad
,
index
,
IndexSelectGradInner
<
DeviceContext
,
T
,
int
>
(
context
,
*
out_grad
,
*
index
,
x_grad
,
dim
);
}
else
if
(
index_type
==
framework
::
proto
::
VarType
::
INT64
)
{
IndexSelectGradInner
<
DeviceContext
,
T
,
int64_t
>
(
context
,
out_grad
,
index
,
x_grad
,
dim
);
IndexSelectGradInner
<
DeviceContext
,
T
,
int64_t
>
(
context
,
*
out_grad
,
*
index
,
x_grad
,
dim
);
}
}
};
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录