Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Crayon鑫
Paddle
提交
ca174025
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看板
未验证
提交
ca174025
编写于
7月 26, 2021
作者:
R
ronnywang
提交者:
GitHub
7月 26, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix bug for index_sample_op_npu (#34383)
上级
a0bbc992
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
31 addition
and
22 deletion
+31
-22
paddle/fluid/operators/index_sample_op_npu.cc
paddle/fluid/operators/index_sample_op_npu.cc
+31
-22
未找到文件。
paddle/fluid/operators/index_sample_op_npu.cc
浏览文件 @
ca174025
...
...
@@ -20,6 +20,35 @@ namespace paddle {
namespace
operators
{
using
Tensor
=
framework
::
Tensor
;
template
<
typename
IndexT
>
void
IndexSampleGather
(
const
paddle
::
platform
::
NPUDeviceContext
&
dev_ctx
,
const
Tensor
*
index
,
const
Tensor
*
input
,
Tensor
*
out
)
{
auto
index_dims
=
index
->
dims
();
auto
input_dims
=
input
->
dims
();
auto
batch_size
=
input_dims
[
0
];
auto
index_length
=
index_dims
[
1
];
std
::
vector
<
IndexT
>
gather_index_vec
;
std
::
vector
<
IndexT
>
index_vec
;
framework
::
TensorToVector
(
*
index
,
dev_ctx
,
&
index_vec
);
for
(
auto
i
=
0
;
i
<
batch_size
;
++
i
)
{
for
(
auto
j
=
0
;
j
<
index_length
;
j
++
)
{
gather_index_vec
.
push_back
(
i
);
gather_index_vec
.
push_back
(
index_vec
[
i
*
index_length
+
j
]);
}
}
Tensor
gather_index
;
framework
::
TensorFromVector
(
gather_index_vec
,
dev_ctx
,
&
gather_index
);
gather_index
.
Resize
({
batch_size
,
index_length
,
2
});
NpuOpRunner
runner
;
runner
.
SetType
(
"GatherNd"
)
.
AddInput
(
*
input
)
.
AddInput
(
gather_index
)
.
AddOutput
(
*
out
);
runner
.
Run
(
dev_ctx
.
stream
());
}
template
<
typename
T
>
class
IndexSampleNPUKernel
:
public
framework
::
OpKernel
<
T
>
{
public:
...
...
@@ -31,32 +60,12 @@ class IndexSampleNPUKernel : public framework::OpKernel<T> {
auto
*
out
=
ctx
.
Output
<
framework
::
LoDTensor
>
(
"Out"
);
out
->
mutable_data
<
T
>
(
ctx
.
GetPlace
());
Tensor
transformed_index
;
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
,
platform
::
errors
::
InvalidArgument
(
"Input(Index) holds the wrong type, it holds %s, but "
"desires to be %s or %s"
,
paddle
::
framework
::
DataTypeToString
(
index_type
),
paddle
::
framework
::
DataTypeToString
(
framework
::
proto
::
VarType
::
INT32
),
paddle
::
framework
::
DataTypeToString
(
framework
::
proto
::
VarType
::
INT64
)));
if
(
index_type
==
framework
::
proto
::
VarType
::
INT32
)
{
transformed_index
.
mutable_data
<
int64_t
>
(
index
->
dims
(),
dev_ctx
.
GetPlace
());
const
auto
&
cast_runner
=
NpuOpRunner
(
"Cast"
,
{
*
index
},
{
transformed_index
},
{{
"dst_type"
,
ACL_INT64
}});
cast_runner
.
Run
(
dev_ctx
.
stream
());
IndexSampleGather
<
int32_t
>
(
dev_ctx
,
index
,
input
,
out
);
}
else
{
transformed_index
.
ShareDataWith
(
*
index
);
IndexSampleGather
<
int64_t
>
(
dev_ctx
,
index
,
input
,
out
);
}
const
auto
&
runner
=
NpuOpRunner
(
"GatherElements"
,
{
*
input
,
transformed_index
},
{
*
out
},
{{
"dim"
,
1
}});
runner
.
Run
(
dev_ctx
.
stream
());
}
};
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录