mirror of https://github.com/alibaba/MNN.git
42 lines
1.2 KiB
C++
42 lines
1.2 KiB
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;
|
|
};
|
|
|
|
class CPURandomNormal : public Execution {
|
|
public:
|
|
CPURandomNormal(Backend *b, const MNN::Op *op) : MNN::Execution(b), mOp(op) {
|
|
// nothing to do
|
|
}
|
|
virtual ~CPURandomNormal() = 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 */
|