mirror of https://github.com/alibaba/MNN.git
56 lines
1.9 KiB
C++
56 lines
1.9 KiB
C++
//
|
|
// ConvolutionTiledExecutor.hpp
|
|
// MNN
|
|
//
|
|
// Created by MNN on 2018/07/16.
|
|
// Copyright © 2018, Alibaba Group Holding Limited
|
|
//
|
|
|
|
#ifndef ConvolutionTiledExecutor_hpp
|
|
#define ConvolutionTiledExecutor_hpp
|
|
|
|
|
|
#include <functional>
|
|
#include "backend/cpu/CPUConvolution.hpp"
|
|
// Tiled Slide Window or Im2Col + GEMM
|
|
namespace MNN {
|
|
class ConvolutionTiledImpl : public CPUConvolution {
|
|
public:
|
|
ConvolutionTiledImpl(const Convolution2DCommon *common, Backend *b) : CPUConvolution(common, b) {
|
|
// Do nothing
|
|
}
|
|
virtual ~ConvolutionTiledImpl() = default;
|
|
virtual ErrorCode onExecute(const std::vector<Tensor *> &inputs, const std::vector<Tensor *> &outputs) override;
|
|
virtual ErrorCode onResize(const std::vector<Tensor *> &inputs, const std::vector<Tensor *> &outputs) override;
|
|
virtual void getPackParameter(int* eP, int* lP, int* hP, const CoreFunctions* core) = 0;
|
|
|
|
protected:
|
|
Tensor mTempBufferTranspose;
|
|
std::pair<int, std::function<void(int)>> mFunction;
|
|
};
|
|
|
|
class ConvolutionTiledExecutor : public Execution {
|
|
public:
|
|
ConvolutionTiledExecutor(Backend* b, const float* bias, size_t biasSize);
|
|
ConvolutionTiledExecutor(std::shared_ptr<CPUConvolution::Resource> res, Backend* b);
|
|
virtual ~ConvolutionTiledExecutor();
|
|
|
|
virtual ErrorCode onExecute(const std::vector<Tensor *> &inputs, const std::vector<Tensor *> &outputs) override {
|
|
return NO_EXECUTION;
|
|
}
|
|
virtual ErrorCode onResize(const std::vector<Tensor *> &inputs, const std::vector<Tensor *> &outputs) override {
|
|
return NO_EXECUTION;
|
|
}
|
|
virtual bool onClone(Backend* bn, const Op* op, Execution** dst) override;
|
|
void initWeight(const float *source, float* cache, int depth, int outputCount, int kernelSize, const CoreFunctions* function);
|
|
|
|
protected:
|
|
std::vector<Tensor *> mInputs;
|
|
std::shared_ptr<CPUConvolution::Resource> mResource;
|
|
};
|
|
|
|
|
|
} // namespace MNN
|
|
|
|
#endif /* ConvolutionTiledExecutor_hpp */
|