MNN/source/backend/cpu/CPUBinary.hpp

31 lines
860 B
C++
Raw Normal View History

2019-04-17 10:49:11 +08:00
//
// CPUBinary.hpp
// MNN
//
// Created by MNN on 2018/08/02.
// Copyright © 2018, Alibaba Group Holding Limited
//
#ifndef CPUBinary_hpp
#define CPUBinary_hpp
2019-12-27 22:16:57 +08:00
#include "core/Execution.hpp"
2019-04-17 10:49:11 +08:00
namespace MNN {
template <typename T>
class CPUBinary : public Execution {
public:
CPUBinary(Backend *b, int32_t type);
virtual ~CPUBinary() = 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;
protected:
int32_t mType;
void (*mElementProc)(float* C, const float* A, const float* B, size_t width, size_t cStride, size_t aStride, size_t bStride, size_t height) = nullptr;
bool mSupportScale = false;
2019-04-17 10:49:11 +08:00
};
} // namespace MNN
#endif /* CPUBinary_hpp */