-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor reshape grad kernel (#38833)
- Loading branch information
1 parent
be81771
commit 8cc0955
Showing
4 changed files
with
161 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
// Copyright (c) 2021 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/pten/kernels/reshape_grad_kernel.h" | ||
#include "paddle/pten/backends/all_context.h" | ||
#include "paddle/pten/core/kernel_registry.h" | ||
#include "paddle/pten/kernels/copy_kernel.h" | ||
|
||
namespace pten { | ||
|
||
template <typename Context> | ||
void ReshapeGradKernel(const Context& dev_ctx, | ||
const DenseTensor& out_grad, | ||
DenseTensor* x_grad) { | ||
auto x_dims = x_grad->dims(); | ||
pten::Copy(dev_ctx, out_grad, false, x_grad); | ||
x_grad->Resize(x_dims); | ||
} | ||
|
||
template <typename Context> | ||
void ReshapeDoubleGradKernel(const Context& dev_ctx, | ||
const DenseTensor& x_grad_grad, | ||
DenseTensor* out_grad_grad) { | ||
ReshapeGradKernel(dev_ctx, x_grad_grad, out_grad_grad); | ||
} | ||
|
||
} // namespace pten | ||
|
||
PT_REGISTER_GENERAL_KERNEL(reshape_grad, | ||
CPU, | ||
ALL_LAYOUT, | ||
pten::ReshapeGradKernel<pten::CPUContext>, | ||
ALL_DTYPE) {} | ||
PT_REGISTER_GENERAL_KERNEL(reshape_double_grad, | ||
CPU, | ||
ALL_LAYOUT, | ||
pten::ReshapeDoubleGradKernel<pten::CPUContext>, | ||
ALL_DTYPE) {} | ||
|
||
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP) | ||
PT_REGISTER_GENERAL_KERNEL(reshape_grad, | ||
GPU, | ||
ALL_LAYOUT, | ||
pten::ReshapeGradKernel<pten::GPUContext>, | ||
ALL_DTYPE) {} | ||
PT_REGISTER_GENERAL_KERNEL(reshape_double_grad, | ||
GPU, | ||
ALL_LAYOUT, | ||
pten::ReshapeDoubleGradKernel<pten::GPUContext>, | ||
ALL_DTYPE) {} | ||
#endif | ||
|
||
#ifdef PADDLE_WITH_XPU | ||
PT_REGISTER_GENERAL_KERNEL(reshape_grad, | ||
XPU, | ||
ALL_LAYOUT, | ||
pten::ReshapeGradKernel<pten::XPUContext>, | ||
ALL_DTYPE) {} | ||
PT_REGISTER_GENERAL_KERNEL(reshape_double_grad, | ||
XPU, | ||
ALL_LAYOUT, | ||
pten::ReshapeDoubleGradKernel<pten::XPUContext>, | ||
ALL_DTYPE) {} | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/* Copyright (c) 2021 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/pten/core/dense_tensor.h" | ||
|
||
namespace pten { | ||
|
||
template <typename Context> | ||
void ReshapeGradKernel(const Context& dev_ctx, | ||
const DenseTensor& out_grad, | ||
DenseTensor* x_grad); | ||
|
||
template <typename Context> | ||
void ReshapeDoubleGradKernel(const Context& dev_ctx, | ||
const DenseTensor& x_grad_grad, | ||
DenseTensor* out_grad_grad); | ||
|
||
} // namespace pten |