concat_op.cu.cc 2.2 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
2 3 4 5 6 7 8 9 10 11 12 13 14

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. */

Y
Yi Wang 已提交
15
#include "paddle/fluid/operators/concat_op.h"
16
#include "paddle/fluid/platform/complex.h"
17 18
#include "paddle/fluid/platform/float16.h"

19
namespace ops = paddle::operators;
20
namespace plat = paddle::platform;
Q
QI JUN 已提交
21
REGISTER_OP_CUDA_KERNEL(
22 23
    concat, ops::ConcatKernel<paddle::platform::CUDADeviceContext, double>,
    ops::ConcatKernel<paddle::platform::CUDADeviceContext, float>,
24
    ops::ConcatKernel<paddle::platform::CUDADeviceContext, bool>,
25
    ops::ConcatKernel<paddle::platform::CUDADeviceContext, plat::float16>,
26
    ops::ConcatKernel<paddle::platform::CUDADeviceContext, int64_t>,
L
liuyuhui 已提交
27
    ops::ConcatKernel<paddle::platform::CUDADeviceContext, int>,
28 29 30 31 32
    ops::ConcatKernel<paddle::platform::CUDADeviceContext, uint8_t>,
    ops::ConcatKernel<paddle::platform::CUDADeviceContext,
                      plat::complex<float>>,
    ops::ConcatKernel<paddle::platform::CUDADeviceContext,
                      plat::complex<double>>);
Q
QI JUN 已提交
33 34
REGISTER_OP_CUDA_KERNEL(
    concat_grad,
35 36
    ops::ConcatGradKernel<paddle::platform::CUDADeviceContext, double>,
    ops::ConcatGradKernel<paddle::platform::CUDADeviceContext, float>,
37
    ops::ConcatGradKernel<paddle::platform::CUDADeviceContext, bool>,
38
    ops::ConcatGradKernel<paddle::platform::CUDADeviceContext, plat::float16>,
39
    ops::ConcatGradKernel<paddle::platform::CUDADeviceContext, int64_t>,
L
liuyuhui 已提交
40
    ops::ConcatGradKernel<paddle::platform::CUDADeviceContext, int>,
41 42 43 44 45
    ops::ConcatGradKernel<paddle::platform::CUDADeviceContext, uint8_t>,
    ops::ConcatGradKernel<paddle::platform::CUDADeviceContext,
                          plat::complex<float>>,
    ops::ConcatGradKernel<paddle::platform::CUDADeviceContext,
                          plat::complex<double>>);