blob: 545fd5cc6383b50e8633ee6143a553b659245579 [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
#ifndef SRC_MODEL_LAYER_CUDNN_CONVOLUTION_H_
#define SRC_MODEL_LAYER_CUDNN_CONVOLUTION_H_
#include "singa/singa_config.h"
#ifdef USE_CUDNN
#include <string>
#include <utility>
#include <vector>
#include "./convolution.h"
#include "singa/core/common.h"
#include "singa/model/layer.h"
#include "singa/proto/core.pb.h"
#include "singa/utils/string.h"
namespace singa {
class CudnnConvolution : public Convolution {
public:
~CudnnConvolution();
/// \copydoc Layer::layer_type()
// const std::string layer_type() const override { return "CudnnConvolution";}
const Tensor Forward(int flag, const Tensor &input) override;
const std::pair<Tensor, vector<Tensor>> Backward(int flag,
const Tensor &grad) override;
/// \copydoc Layer::Setup(const LayerConf&);
void Setup(const Shape& in_sample, const LayerConf &conf) override;
void ToDevice(std::shared_ptr<Device> device) override;
size_t workspace_byte_limit() { return workspace_byte_limit_; }
string prefer() { return prefer_; }
protected:
/// Init cudnn related data structures.
void InitCudnn(const Tensor& input);
protected:
bool has_init_cudnn_ = false;
cudnnTensorDescriptor_t x_desc_ = nullptr;
cudnnTensorDescriptor_t y_desc_ = nullptr;
cudnnTensorDescriptor_t bias_desc_ = nullptr;
cudnnFilterDescriptor_t filter_desc_ = nullptr;
cudnnConvolutionDescriptor_t conv_desc_ = nullptr;
cudnnConvolutionFwdAlgo_t fp_alg_;
cudnnConvolutionBwdFilterAlgo_t bp_filter_alg_;
cudnnConvolutionBwdDataAlgo_t bp_data_alg_;
size_t workspace_byte_limit_, workspace_count_;
Tensor workspace_;
string prefer_;
};
} // namespace singa
#endif // USE_CUDNN
#endif // SRC_MODEL_LAYER_CUDNN_CONVOLUTION_H_