| 
									
										
										
										
											2019-04-17 10:49:11 +08:00
										 |  |  | //
 | 
					
						
							|  |  |  | //  CPULRN.hpp
 | 
					
						
							|  |  |  | //  MNN
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | //  Created by MNN on 2018/07/17.
 | 
					
						
							|  |  |  | //  Copyright © 2018, Alibaba Group Holding Limited
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef CPULRN_hpp
 | 
					
						
							|  |  |  | #define CPULRN_hpp
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "Execution.hpp"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace MNN { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class CPULRN : public Execution { | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  |     CPULRN(Backend *backend, int regionType, int localSize, float alpha, float beta); | 
					
						
							|  |  |  |     virtual ~CPULRN() = 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: | 
					
						
							| 
									
										
										
										
											2019-05-24 11:26:54 +08:00
										 |  |  |     void executeAcrossChannels(const float* srcData, float* dstData, const int width, const int height, const int channels, const float* powfParam); | 
					
						
							|  |  |  |     void executeWithInChannels(const float* srcData, float* dstData, const int width, const int height, const int channels, const float* powfParam); | 
					
						
							| 
									
										
										
										
											2019-04-17 10:49:11 +08:00
										 |  |  |      | 
					
						
							|  |  |  | private: | 
					
						
							| 
									
										
										
										
											2019-05-24 11:26:54 +08:00
										 |  |  |     Tensor mStorage; | 
					
						
							| 
									
										
										
										
											2019-04-17 10:49:11 +08:00
										 |  |  |     Tensor mSquare; | 
					
						
							|  |  |  |     int mRegionType; | 
					
						
							|  |  |  |     int mLocalSize; | 
					
						
							|  |  |  |     float mAlpha; | 
					
						
							|  |  |  |     float mBeta; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } // namespace MNN
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif /* CPULRN_hpp */
 |