mirror of https://github.com/alibaba/MNN.git
30 lines
757 B
C++
30 lines
757 B
C++
|
//
|
||
|
// CPURandomUniform.h
|
||
|
// MNN
|
||
|
//
|
||
|
// Created by MNN on 2020/8/14.
|
||
|
// Copyright © 2018, Alibaba Group Holding Limited
|
||
|
//
|
||
|
|
||
|
#ifndef CPURandomUniform_h
|
||
|
#define CPURandomUniform_h
|
||
|
|
||
|
#include "core/Execution.hpp"
|
||
|
|
||
|
namespace MNN {
|
||
|
class CPURandomUniform : public Execution {
|
||
|
public:
|
||
|
CPURandomUniform(Backend *b, const MNN::Op *op) : MNN::Execution(b), mOp(op) {
|
||
|
// nothing to do
|
||
|
}
|
||
|
virtual ~CPURandomUniform() = 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:
|
||
|
const MNN::Op *mOp;
|
||
|
};
|
||
|
|
||
|
} // namespace MNN
|
||
|
|
||
|
#endif /* CPURandomUniform_h */
|