mirror of https://github.com/alibaba/MNN.git
34 lines
815 B
C++
34 lines
815 B
C++
//
|
|
// UnaryExecution.hpp
|
|
// MNN
|
|
//
|
|
// Created by MNN on 2019/01/31.
|
|
// Copyright © 2018, Alibaba Group Holding Limited
|
|
//
|
|
|
|
#ifndef UnaryExecution_hpp
|
|
#define UnaryExecution_hpp
|
|
|
|
#include "CommonExecution.hpp"
|
|
|
|
namespace MNN {
|
|
namespace OpenCL {
|
|
|
|
class UnaryExecution : public CommonExecution {
|
|
public:
|
|
UnaryExecution(const std::string &compute, const MNN::Op *op, Backend *backend);
|
|
virtual ~UnaryExecution() = default;
|
|
|
|
virtual ErrorCode onEncode(const std::vector<Tensor *> &inputs, const std::vector<Tensor *> &outputs) override;
|
|
|
|
private:
|
|
uint32_t mMaxWorkGroupSize;
|
|
std::vector<uint32_t> mGlobalWorkSize = {1, 1, 1};
|
|
std::vector<uint32_t> mLocalSize = {1, 1, 1};
|
|
std::set<std::string> mBuildOptions;
|
|
};
|
|
|
|
} // namespace OpenCL
|
|
} // namespace MNN
|
|
#endif /* UnaryExecution_hpp */
|