conv_op.cu.cc 1.6 KB
Newer Older
L
Luo Tao 已提交
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.
2

L
Luo Tao 已提交
3 4 5
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
6

L
Luo Tao 已提交
7
    http://www.apache.org/licenses/LICENSE-2.0
8

L
Luo Tao 已提交
9 10 11 12 13
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. */
14

C
chengduoZH 已提交
15
#include "paddle/operators/conv_op.h"
16 17 18

namespace ops = paddle::operators;

Z
zlx 已提交
19 20 21 22 23
REGISTER_OP_CUDA_KERNEL(
    depthwiseConv,
    ops::DepthwiseConvKernel<paddle::platform::CUDADeviceContext, float>,
    ops::DepthwiseConvKernel<paddle::platform::CUDADeviceContext, double>);

Q
QI JUN 已提交
24 25 26 27 28 29 30
REGISTER_OP_CUDA_KERNEL(
    conv2d, ops::GemmConvKernel<paddle::platform::CUDADeviceContext, float>,
    ops::GemmConvKernel<paddle::platform::CUDADeviceContext, double>);
REGISTER_OP_CUDA_KERNEL(
    conv2d_grad,
    ops::GemmConvGradKernel<paddle::platform::CUDADeviceContext, float>,
    ops::GemmConvGradKernel<paddle::platform::CUDADeviceContext, double>);
C
chengduoZH 已提交
31

Q
QI JUN 已提交
32 33 34 35 36 37 38
REGISTER_OP_CUDA_KERNEL(
    conv3d, ops::GemmConvKernel<paddle::platform::CUDADeviceContext, float>,
    ops::GemmConvKernel<paddle::platform::CUDADeviceContext, double>);
REGISTER_OP_CUDA_KERNEL(
    conv3d_grad,
    ops::GemmConvGradKernel<paddle::platform::CUDADeviceContext, float>,
    ops::GemmConvGradKernel<paddle::platform::CUDADeviceContext, double>);