Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
148fa05e
P
Paddle
项目概览
PaddlePaddle
/
Paddle
大约 1 年 前同步成功
通知
2299
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看板
未验证
提交
148fa05e
编写于
6月 29, 2022
作者:
Z
zhangkaihuo
提交者:
GitHub
6月 29, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Change sparse Copy from Kernel to basic component utils (#43916)
上级
1dbbe20e
变更
6
显示空白变更内容
内联
并排
Showing
6 changed file
with
127 addition
and
186 deletion
+127
-186
paddle/phi/api/lib/tensor_method.cc
paddle/phi/api/lib/tensor_method.cc
+14
-32
paddle/phi/core/tensor_utils.cc
paddle/phi/core/tensor_utils.cc
+81
-0
paddle/phi/core/tensor_utils.h
paddle/phi/core/tensor_utils.h
+16
-0
paddle/phi/kernels/sparse/copy_kernel.cc
paddle/phi/kernels/sparse/copy_kernel.cc
+0
-99
paddle/phi/kernels/sparse/copy_kernel.h
paddle/phi/kernels/sparse/copy_kernel.h
+0
-40
paddle/phi/kernels/sparse/cpu/elementwise_grad_kernel.cc
paddle/phi/kernels/sparse/cpu/elementwise_grad_kernel.cc
+16
-15
未找到文件。
paddle/phi/api/lib/tensor_method.cc
浏览文件 @
148fa05e
...
...
@@ -167,35 +167,17 @@ void Tensor::copy_(const Tensor &src,
blocking
,
static_cast
<
phi
::
SelectedRows
*>
(
impl_
.
get
()));
}
else
if
(
kernel_type
==
KernelType
::
SPARSE_COO_KERNEL
)
{
auto
kernel
=
phi
::
KernelFactory
::
Instance
().
SelectKernelOrThrowError
(
"copy_sparse_coo"
,
{
kernel_backend
,
kernel_layout
,
kernel_data_type
});
VLOG
(
6
)
<<
"copy API kernel key: "
<<
kernel_key
;
VLOG
(
6
)
<<
"copy API kernel: "
<<
kernel
;
using
kernel_signature
=
void
(
*
)(
const
platform
::
DeviceContext
&
,
const
phi
::
SparseCooTensor
&
,
phi
::
Place
,
bool
,
phi
::
SparseCooTensor
*
);
this
->
set_impl
(
std
::
make_shared
<
phi
::
SparseCooTensor
>
());
auto
*
kernel_fn
=
kernel
.
GetVariadicKernelFn
<
kernel_signature
>
();
(
*
kernel_fn
)(
*
dev_ctx
,
SetSparseKernelOutput
(
this
,
TensorType
::
SPARSE_COO
);
// TODO(zhangkaihuo) add sparse infer_meta
phi
::
Copy
(
*
dev_ctx
,
(
*
(
std
::
static_pointer_cast
<
phi
::
SparseCooTensor
>
(
src
.
impl_
))),
target_place
,
blocking
,
static_cast
<
phi
::
SparseCooTensor
*>
(
impl_
.
get
()));
}
else
if
(
kernel_type
==
KernelType
::
SPARSE_CSR_KERNEL
)
{
auto
kernel
=
phi
::
KernelFactory
::
Instance
().
SelectKernelOrThrowError
(
"copy_sparse_csr"
,
{
kernel_backend
,
kernel_layout
,
kernel_data_type
});
VLOG
(
6
)
<<
"copy API kernel key: "
<<
kernel_key
;
VLOG
(
6
)
<<
"copy API kernel: "
<<
kernel
;
using
kernel_signature
=
void
(
*
)(
const
platform
::
DeviceContext
&
,
const
phi
::
SparseCsrTensor
&
,
phi
::
Place
,
bool
,
phi
::
SparseCsrTensor
*
);
this
->
set_impl
(
std
::
make_shared
<
phi
::
SparseCsrTensor
>
());
auto
*
kernel_fn
=
kernel
.
GetVariadicKernelFn
<
kernel_signature
>
();
(
*
kernel_fn
)(
*
dev_ctx
,
SetSparseKernelOutput
(
this
,
TensorType
::
SPARSE_CSR
);
// TODO(zhangkaihuo) add sparse infer_meta
phi
::
Copy
(
*
dev_ctx
,
(
*
(
std
::
static_pointer_cast
<
phi
::
SparseCsrTensor
>
(
src
.
impl_
))),
target_place
,
blocking
,
...
...
paddle/phi/core/tensor_utils.cc
浏览文件 @
148fa05e
...
...
@@ -234,6 +234,53 @@ void Copy(const Context& dev_ctx,
dev_ctx
,
src
.
value
(),
dst_place
,
blocking
,
dst
->
mutable_value
());
}
template
<
typename
Context
>
void
Copy
(
const
Context
&
dev_ctx
,
const
SparseCooTensor
&
src
,
Place
dst_place
,
bool
blocking
,
SparseCooTensor
*
dst
)
{
phi
::
Copy
<
Context
>
(
dev_ctx
,
src
.
non_zero_indices
(),
dst_place
,
blocking
,
dst
->
mutable_non_zero_indices
());
phi
::
Copy
<
Context
>
(
dev_ctx
,
src
.
non_zero_elements
(),
dst_place
,
blocking
,
dst
->
mutable_non_zero_elements
());
dst
->
set_dims
(
src
.
dims
());
dst
->
SetCoalesced
(
src
.
coalesced
());
}
template
<
typename
Context
>
void
Copy
(
const
Context
&
dev_ctx
,
const
SparseCsrTensor
&
src
,
Place
dst_place
,
bool
blocking
,
SparseCsrTensor
*
dst
)
{
phi
::
Copy
<
Context
>
(
dev_ctx
,
src
.
non_zero_crows
(),
dst_place
,
blocking
,
dst
->
mutable_non_zero_crows
());
phi
::
Copy
<
Context
>
(
dev_ctx
,
src
.
non_zero_cols
(),
dst_place
,
blocking
,
dst
->
mutable_non_zero_cols
());
phi
::
Copy
<
Context
>
(
dev_ctx
,
src
.
non_zero_elements
(),
dst_place
,
blocking
,
dst
->
mutable_non_zero_elements
());
dst
->
set_dims
(
src
.
dims
());
}
template
void
Copy
(
const
CPUContext
&
dev_ctx
,
const
DenseTensor
&
src
,
Place
dst_place
,
...
...
@@ -257,6 +304,30 @@ template void Copy(const DeviceContext& dev_ctx,
bool
blocking
,
SelectedRows
*
dst
);
template
void
Copy
(
const
CPUContext
&
dev_ctx
,
const
SparseCooTensor
&
src
,
Place
dst_place
,
bool
blocking
,
SparseCooTensor
*
dst
);
template
void
Copy
(
const
DeviceContext
&
dev_ctx
,
const
SparseCooTensor
&
src
,
Place
dst_place
,
bool
blocking
,
SparseCooTensor
*
dst
);
template
void
Copy
(
const
CPUContext
&
dev_ctx
,
const
SparseCsrTensor
&
src
,
Place
dst_place
,
bool
blocking
,
SparseCsrTensor
*
dst
);
template
void
Copy
(
const
DeviceContext
&
dev_ctx
,
const
SparseCsrTensor
&
src
,
Place
dst_place
,
bool
blocking
,
SparseCsrTensor
*
dst
);
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
template
void
Copy
(
const
GPUContext
&
dev_ctx
,
const
DenseTensor
&
src
,
...
...
@@ -268,6 +339,16 @@ template void Copy(const GPUContext& dev_ctx,
Place
dst_place
,
bool
blocking
,
SelectedRows
*
dst
);
template
void
Copy
(
const
GPUContext
&
dev_ctx
,
const
SparseCooTensor
&
src
,
Place
dst_place
,
bool
blocking
,
SparseCooTensor
*
dst
);
template
void
Copy
(
const
GPUContext
&
dev_ctx
,
const
SparseCsrTensor
&
src
,
Place
dst_place
,
bool
blocking
,
SparseCsrTensor
*
dst
);
#endif
#ifdef PADDLE_WITH_XPU
...
...
paddle/phi/core/tensor_utils.h
浏览文件 @
148fa05e
...
...
@@ -16,6 +16,8 @@ limitations under the License. */
#include "paddle/phi/core/dense_tensor.h"
#include "paddle/phi/core/selected_rows.h"
#include "paddle/phi/core/sparse_coo_tensor.h"
#include "paddle/phi/core/sparse_csr_tensor.h"
#include "paddle/phi/core/tensor_meta.h"
namespace
phi
{
...
...
@@ -85,4 +87,18 @@ void Copy(const Context& dev_ctx,
bool
blocking
,
SelectedRows
*
dst
);
template
<
typename
Context
>
void
Copy
(
const
Context
&
dev_ctx
,
const
SparseCooTensor
&
src
,
Place
dst_place
,
bool
blocking
,
SparseCooTensor
*
dst
);
template
<
typename
Context
>
void
Copy
(
const
Context
&
dev_ctx
,
const
SparseCsrTensor
&
src
,
Place
dst_place
,
bool
blocking
,
SparseCsrTensor
*
dst
);
}
// namespace phi
paddle/phi/kernels/sparse/copy_kernel.cc
已删除
100644 → 0
浏览文件 @
1dbbe20e
/* Copyright (c) 2022 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 "paddle/phi/kernels/sparse/copy_kernel.h"
#include "paddle/phi/backends/cpu/cpu_context.h"
#include "paddle/phi/backends/gpu/gpu_context.h"
#include "paddle/phi/core/kernel_registry.h"
#include "paddle/phi/core/sparse_coo_tensor.h"
#include "paddle/phi/core/sparse_csr_tensor.h"
#include "paddle/phi/core/tensor_utils.h"
namespace
phi
{
namespace
sparse
{
template
<
typename
Context
>
void
CopyCoo
(
const
Context
&
dev_ctx
,
const
SparseCooTensor
&
src
,
Place
dst_place
,
bool
blocking
,
SparseCooTensor
*
dst
)
{
phi
::
Copy
<
Context
>
(
dev_ctx
,
src
.
non_zero_indices
(),
dst_place
,
blocking
,
dst
->
mutable_non_zero_indices
());
phi
::
Copy
<
Context
>
(
dev_ctx
,
src
.
non_zero_elements
(),
dst_place
,
blocking
,
dst
->
mutable_non_zero_elements
());
dst
->
set_dims
(
src
.
dims
());
}
template
<
typename
Context
>
void
CopyCsr
(
const
Context
&
dev_ctx
,
const
SparseCsrTensor
&
src
,
Place
dst_place
,
bool
blocking
,
SparseCsrTensor
*
dst
)
{
phi
::
Copy
<
Context
>
(
dev_ctx
,
src
.
non_zero_crows
(),
dst_place
,
blocking
,
dst
->
mutable_non_zero_crows
());
phi
::
Copy
<
Context
>
(
dev_ctx
,
src
.
non_zero_cols
(),
dst_place
,
blocking
,
dst
->
mutable_non_zero_cols
());
phi
::
Copy
<
Context
>
(
dev_ctx
,
src
.
non_zero_elements
(),
dst_place
,
blocking
,
dst
->
mutable_non_zero_elements
());
dst
->
set_dims
(
src
.
dims
());
}
}
// namespace sparse
}
// namespace phi
PD_REGISTER_GENERAL_KERNEL
(
copy_sparse_coo
,
CPU
,
ALL_LAYOUT
,
phi
::
sparse
::
CopyCoo
<
phi
::
CPUContext
>
,
ALL_DTYPE
)
{}
PD_REGISTER_GENERAL_KERNEL
(
copy_sparse_csr
,
CPU
,
ALL_LAYOUT
,
phi
::
sparse
::
CopyCsr
<
phi
::
CPUContext
>
,
ALL_DTYPE
)
{}
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
PD_REGISTER_GENERAL_KERNEL
(
copy_sparse_coo
,
GPU
,
ALL_LAYOUT
,
phi
::
sparse
::
CopyCoo
<
phi
::
GPUContext
>
,
ALL_DTYPE
)
{}
PD_REGISTER_GENERAL_KERNEL
(
copy_sparse_csr
,
GPU
,
ALL_LAYOUT
,
phi
::
sparse
::
CopyCsr
<
phi
::
GPUContext
>
,
ALL_DTYPE
)
{}
#endif
paddle/phi/kernels/sparse/copy_kernel.h
已删除
100644 → 0
浏览文件 @
1dbbe20e
/* Copyright (c) 2022 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. */
#pragma once
#include "paddle/phi/core/dense_tensor.h"
#include "paddle/phi/core/sparse_coo_tensor.h"
#include "paddle/phi/core/sparse_csr_tensor.h"
#include "paddle/phi/kernels/empty_kernel.h"
namespace
phi
{
namespace
sparse
{
template
<
typename
Context
>
void
CopyCoo
(
const
Context
&
dev_ctx
,
const
SparseCooTensor
&
src
,
Place
dst_place
,
bool
blocking
,
SparseCooTensor
*
dst
);
template
<
typename
Context
>
void
CopyCsr
(
const
Context
&
dev_ctx
,
const
SparseCsrTensor
&
src
,
Place
dst_place
,
bool
blocking
,
SparseCsrTensor
*
dst
);
}
// namespace sparse
}
// namespace phi
paddle/phi/kernels/sparse/cpu/elementwise_grad_kernel.cc
浏览文件 @
148fa05e
...
...
@@ -16,11 +16,12 @@ limitations under the License. */
#include "paddle/phi/core/enforce.h"
#include "paddle/phi/core/kernel_registry.h"
#include "paddle/phi/core/tensor_meta.h"
#include "paddle/phi/core/tensor_utils.h"
#include "paddle/phi/core/visit_type.h"
#include "paddle/phi/kernels/activation_kernel.h"
#include "paddle/phi/kernels/elementwise_kernel.h"
#include "paddle/phi/kernels/empty_kernel.h"
#include "paddle/phi/kernels/funcs/eigen/common.h"
#include "paddle/phi/kernels/sparse/copy_kernel.h"
#include "paddle/phi/kernels/sparse/elementwise_kernel.h"
namespace
phi
{
...
...
@@ -56,16 +57,16 @@ void ElementWiseAddCsrGradCPUKernel(const Context& dev_ctx,
if
(
dx
!=
nullptr
&&
dy
==
nullptr
)
{
VLOG
(
4
)
<<
"Special case when dy is not needed"
;
AllocCsrPtr
<
T
,
IntT
>
(
dev_ctx
,
x
,
dx
);
Copy
Csr
(
dev_ctx
,
dout
,
dev_ctx
.
GetPlace
(),
false
,
dx
);
Copy
(
dev_ctx
,
dout
,
dev_ctx
.
GetPlace
(),
false
,
dx
);
}
else
if
(
dx
==
nullptr
&&
dy
!=
nullptr
)
{
VLOG
(
4
)
<<
"Special case when dx is not needed"
;
AllocCsrPtr
<
T
,
IntT
>
(
dev_ctx
,
y
,
dy
);
Copy
Csr
(
dev_ctx
,
dout
,
dev_ctx
.
GetPlace
(),
false
,
dy
);
Copy
(
dev_ctx
,
dout
,
dev_ctx
.
GetPlace
(),
false
,
dy
);
}
else
{
AllocCsrPtr
<
T
,
IntT
>
(
dev_ctx
,
x
,
dx
);
AllocCsrPtr
<
T
,
IntT
>
(
dev_ctx
,
y
,
dy
);
Copy
Csr
(
dev_ctx
,
dout
,
dev_ctx
.
GetPlace
(),
false
,
dx
);
Copy
Csr
(
dev_ctx
,
dout
,
dev_ctx
.
GetPlace
(),
false
,
dy
);
Copy
(
dev_ctx
,
dout
,
dev_ctx
.
GetPlace
(),
false
,
dx
);
Copy
(
dev_ctx
,
dout
,
dev_ctx
.
GetPlace
(),
false
,
dy
);
}
}
...
...
@@ -78,12 +79,12 @@ void ElementWiseSubtractCsrGradCPUKernel(const Context& dev_ctx,
SparseCsrTensor
*
dy
)
{
if
(
dx
)
{
AllocCsrPtr
<
T
,
IntT
>
(
dev_ctx
,
x
,
dx
);
Copy
Csr
(
dev_ctx
,
dout
,
dev_ctx
.
GetPlace
(),
false
,
dx
);
Copy
(
dev_ctx
,
dout
,
dev_ctx
.
GetPlace
(),
false
,
dx
);
}
if
(
dy
)
{
AllocCsrPtr
<
T
,
IntT
>
(
dev_ctx
,
y
,
dy
);
Copy
Csr
(
dev_ctx
,
dout
,
dev_ctx
.
GetPlace
(),
false
,
dy
);
Copy
(
dev_ctx
,
dout
,
dev_ctx
.
GetPlace
(),
false
,
dy
);
phi
::
NegativeKernel
<
T
,
Context
>
(
dev_ctx
,
dout
.
non_zero_elements
(),
dy
->
mutable_non_zero_elements
());
}
...
...
@@ -126,7 +127,7 @@ void ElementWiseDivideCsrGradCPUKernel(const Context& dev_ctx,
if
(
dy
)
{
// -dout * out / y
AllocCsrPtr
<
T
,
IntT
>
(
dev_ctx
,
y
,
dy
);
Copy
Csr
(
dev_ctx
,
dout
,
dev_ctx
.
GetPlace
(),
false
,
dy
);
Copy
(
dev_ctx
,
dout
,
dev_ctx
.
GetPlace
(),
false
,
dy
);
phi
::
NegativeKernel
<
T
,
Context
>
(
dev_ctx
,
dout
.
non_zero_elements
(),
dy
->
mutable_non_zero_elements
());
auto
tmp
=
sparse
::
ElementWiseMultiplyCsr
<
T
,
Context
>
(
dev_ctx
,
*
dy
,
out
);
...
...
@@ -145,16 +146,16 @@ void ElementWiseAddCooGradCPUKernel(const Context& dev_ctx,
if
(
dx
!=
nullptr
&&
dy
==
nullptr
)
{
VLOG
(
4
)
<<
"Special case when dy is not needed"
;
AllocCooPtr
<
T
,
IntT
>
(
dev_ctx
,
x
,
dx
);
Copy
Coo
(
dev_ctx
,
dout
,
dev_ctx
.
GetPlace
(),
false
,
dx
);
Copy
(
dev_ctx
,
dout
,
dev_ctx
.
GetPlace
(),
false
,
dx
);
}
else
if
(
dx
==
nullptr
&&
dy
!=
nullptr
)
{
VLOG
(
4
)
<<
"Special case when dx is not needed"
;
AllocCooPtr
<
T
,
IntT
>
(
dev_ctx
,
y
,
dy
);
Copy
Coo
(
dev_ctx
,
dout
,
dev_ctx
.
GetPlace
(),
false
,
dy
);
Copy
(
dev_ctx
,
dout
,
dev_ctx
.
GetPlace
(),
false
,
dy
);
}
else
{
AllocCooPtr
<
T
,
IntT
>
(
dev_ctx
,
x
,
dx
);
AllocCooPtr
<
T
,
IntT
>
(
dev_ctx
,
y
,
dy
);
Copy
Coo
(
dev_ctx
,
dout
,
dev_ctx
.
GetPlace
(),
false
,
dx
);
Copy
Coo
(
dev_ctx
,
dout
,
dev_ctx
.
GetPlace
(),
false
,
dy
);
Copy
(
dev_ctx
,
dout
,
dev_ctx
.
GetPlace
(),
false
,
dx
);
Copy
(
dev_ctx
,
dout
,
dev_ctx
.
GetPlace
(),
false
,
dy
);
}
}
...
...
@@ -167,12 +168,12 @@ void ElementWiseSubtractCooGradCPUKernel(const Context& dev_ctx,
SparseCooTensor
*
dy
)
{
if
(
dx
)
{
AllocCooPtr
<
T
,
IntT
>
(
dev_ctx
,
x
,
dx
);
Copy
Coo
(
dev_ctx
,
dout
,
dev_ctx
.
GetPlace
(),
false
,
dx
);
Copy
(
dev_ctx
,
dout
,
dev_ctx
.
GetPlace
(),
false
,
dx
);
}
if
(
dy
)
{
AllocCooPtr
<
T
,
IntT
>
(
dev_ctx
,
y
,
dy
);
Copy
Coo
(
dev_ctx
,
dout
,
dev_ctx
.
GetPlace
(),
false
,
dy
);
Copy
(
dev_ctx
,
dout
,
dev_ctx
.
GetPlace
(),
false
,
dy
);
phi
::
NegativeKernel
<
T
,
Context
>
(
dev_ctx
,
dout
.
non_zero_elements
(),
dy
->
mutable_non_zero_elements
());
}
...
...
@@ -215,7 +216,7 @@ void ElementWiseDivideCooGradCPUKernel(const Context& dev_ctx,
if
(
dy
)
{
// -dout * out / y
AllocCooPtr
<
T
,
IntT
>
(
dev_ctx
,
y
,
dy
);
Copy
Coo
(
dev_ctx
,
dout
,
dev_ctx
.
GetPlace
(),
false
,
dy
);
Copy
(
dev_ctx
,
dout
,
dev_ctx
.
GetPlace
(),
false
,
dy
);
phi
::
NegativeKernel
<
T
,
Context
>
(
dev_ctx
,
dout
.
non_zero_elements
(),
dy
->
mutable_non_zero_elements
());
auto
tmp
=
sparse
::
ElementWiseMultiplyCoo
<
T
,
Context
>
(
dev_ctx
,
*
dy
,
out
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录