mirror of https://github.com/alibaba/MNN.git
				
				
				
			
		
			
				
	
	
		
			33 lines
		
	
	
		
			963 B
		
	
	
	
		
			C++
		
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			963 B
		
	
	
	
		
			C++
		
	
	
	
| //
 | |
| //  VulkanResize.hpp
 | |
| //  MNN
 | |
| //
 | |
| //  Created by MNN on 2019/01/31.
 | |
| //  Copyright © 2018, Alibaba Group Holding Limited
 | |
| //
 | |
| 
 | |
| #ifndef VulkanResize_hpp
 | |
| #define VulkanResize_hpp
 | |
| #include "VulkanBasicExecution.hpp"
 | |
| 
 | |
| namespace MNN {
 | |
| class VulkanResize : public VulkanBasicExecution {
 | |
| public:
 | |
|     VulkanResize(Backend* bn, float xScale, float yScale, int resizeType=2);
 | |
|     virtual ~VulkanResize();
 | |
|     ErrorCode onEncode(const std::vector<Tensor*>& inputs, const std::vector<Tensor*>& outputs,
 | |
|                        const VulkanCommandPool::Buffer* cmdBuffer) override;
 | |
| 
 | |
|     ErrorCode encodeImpl(Tensor* input, Tensor* output, float xScale, float yScale,
 | |
|                          const VulkanCommandPool::Buffer* cmdBuffer);
 | |
| 
 | |
| private:
 | |
|     float mXScale;
 | |
|     float mYScale;
 | |
|     std::shared_ptr<VulkanBuffer> mParamBuffer;
 | |
|     const VulkanPipeline* mVulkanResizePipeline;
 | |
|     std::shared_ptr<VulkanPipeline::DescriptorSet> mDescriptorSet;
 | |
| };
 | |
| } // namespace MNN
 | |
| #endif
 |