mirror of https://github.com/alibaba/MNN.git
38 lines
1.2 KiB
C++
38 lines
1.2 KiB
C++
//
|
|
// ConvolutionDepthwise3x3.hpp
|
|
// MNN
|
|
//
|
|
// Created by MNN on 2019/4/3.
|
|
// Copyright © 2018, Alibaba Group Holding Limited
|
|
//
|
|
|
|
#ifndef ConvolutionDepthwise3x3_hpp
|
|
#define ConvolutionDepthwise3x3_hpp
|
|
|
|
#include "backend/cpu/CPUConvolution.hpp"
|
|
|
|
namespace MNN {
|
|
class ConvolutionDepthwise3x3 : public CPUConvolution {
|
|
public:
|
|
ConvolutionDepthwise3x3(const Convolution2DCommon *common, Backend *b, const float *originWeight,
|
|
size_t originWeightSize, const float *bias, size_t biasSize);
|
|
virtual ~ConvolutionDepthwise3x3();
|
|
|
|
virtual ErrorCode onResize(const std::vector<Tensor *> &inputs, const std::vector<Tensor *> &outputs) override;
|
|
virtual ErrorCode onExecute(const std::vector<Tensor *> &inputs, const std::vector<Tensor *> &outputs) override;
|
|
virtual bool onClone(Backend* bn, const Op* op, Execution** dst) override;
|
|
private:
|
|
ConvolutionDepthwise3x3(std::shared_ptr<Resource> resource, const Convolution2DCommon* common, Backend* b);
|
|
|
|
std::shared_ptr<Resource> mResource;
|
|
|
|
std::unique_ptr<Tensor> mCacheLine;
|
|
int mSourceStartX = 0;
|
|
int mSourceEndX = 0;
|
|
std::vector<float> mPostParameters;
|
|
std::vector<int> mDivides;
|
|
};
|
|
} // namespace MNN
|
|
|
|
#endif /* ConvolutionDepthwise3x3_hpp */
|