mirror of https://github.com/alibaba/MNN.git
40 lines
871 B
C++
40 lines
871 B
C++
//
|
|
// 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:
|
|
void executeAcrossChannels();
|
|
void executeWithInChannels();
|
|
|
|
private:
|
|
Tensor mSquare;
|
|
Tensor mInput;
|
|
Tensor mOutput;
|
|
int mRegionType;
|
|
int mLocalSize;
|
|
float mAlpha;
|
|
float mBeta;
|
|
};
|
|
|
|
} // namespace MNN
|
|
|
|
#endif /* CPULRN_hpp */
|