Skip to content

Commit

Permalink
rename unpool2d to unpool, test=develop
Browse files Browse the repository at this point in the history
  • Loading branch information
tink2123 committed Aug 27, 2021
1 parent cc21c42 commit b6dda59
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions paddle/fluid/operators/unpool_op.cu.cc
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ limitations under the License. */

namespace ops = paddle::operators;
REGISTER_OP_CUDA_KERNEL(
unpool2d, ops::UnpoolKernel<paddle::platform::CUDADeviceContext, float>,
unpool, ops::UnpoolKernel<paddle::platform::CUDADeviceContext, float>,
ops::UnpoolKernel<paddle::platform::CUDADeviceContext, double>);
REGISTER_OP_CUDA_KERNEL(
unpool2d_grad,
unpool_grad,
ops::UnpoolGradKernel<paddle::platform::CUDADeviceContext, float>,
ops::UnpoolGradKernel<paddle::platform::CUDADeviceContext, double>);

1 comment on commit b6dda59

@paddle-bot-old
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Congratulation! Your pull request passed all required CI. You could ask reviewer(s) to approve and merge. 🎉

Please sign in to comment.