mirror of https://github.com/alibaba/MNN.git
				
				
				
			
		
			
				
	
	
		
			53 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C++
		
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C++
		
	
	
	
| //
 | |
| //  MetalDeconvolution.hpp
 | |
| //  MNN
 | |
| //
 | |
| //  Created by MNN on 2019/01/30.
 | |
| //  Copyright © 2018, Alibaba Group Holding Limited
 | |
| //
 | |
| 
 | |
| #ifndef MetalDeconvolution_hpp
 | |
| #define MetalDeconvolution_hpp
 | |
| 
 | |
| #import "core/Execution.hpp"
 | |
| #import "MNN_generated.h"
 | |
| #import "MetalDefine.h"
 | |
| 
 | |
| #if MNN_METAL_ENABLED
 | |
| namespace MNN {
 | |
| 
 | |
| class MetalDeconvolution : public Execution {
 | |
| public:
 | |
|     MetalDeconvolution(Backend *backend, const MNN::Op *op);
 | |
|     virtual ~MetalDeconvolution() = default;
 | |
|     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;
 | |
| 
 | |
| private:
 | |
|     bool mDepthwise  = false;
 | |
|     int mGroup       = 0;
 | |
|     int mKernelX     = 0;
 | |
|     int mKernelY     = 0;
 | |
|     PadMode mPadMode = PadMode_CAFFE;
 | |
|     int mPadX        = 0;
 | |
|     int mPadY        = 0;
 | |
|     int mStrideX     = 0;
 | |
|     int mStrideY     = 0;
 | |
|     int mDilateX     = 0;
 | |
|     int mDilateY     = 0;
 | |
|     int mActivationType = 0;
 | |
| 
 | |
|     const MNN::Op *mOp = nullptr;
 | |
| 
 | |
|     id<MTLBuffer> mWeight      = nil;
 | |
|     id<MTLBuffer> mBias        = nil;
 | |
|     id<MTLBuffer> mConstBuffer = nil;
 | |
|     id<MTLComputePipelineState> mPipeline;
 | |
|     std::pair<MTLSize, MTLSize> mThreads;
 | |
| 
 | |
| };
 | |
| 
 | |
| } // namespace MNN
 | |
| #endif /* MNN_METAL_ENABLED */
 | |
| #endif /* MetalDeconvolution_hpp */
 |