mirror of https://github.com/alibaba/MNN.git
32 lines
656 B
C++
32 lines
656 B
C++
//
|
|
// Arm82Eltwise.hpp
|
|
// MNN
|
|
//
|
|
// Created by MNN on 2020/2/13.
|
|
// Copyright © 2018, Alibaba Group Holding Limited
|
|
//
|
|
#if defined(__ANDROID__) || defined(__aarch64__)
|
|
|
|
#ifndef Arm82Eltwise_hpp
|
|
#define Arm82Eltwise_hpp
|
|
|
|
#include "core/Execution.hpp"
|
|
#include "MNN_generated.h"
|
|
|
|
namespace MNN {
|
|
|
|
class Arm82Eltwise : public Execution {
|
|
public:
|
|
Arm82Eltwise(Backend *backend, EltwiseType type);
|
|
virtual ~Arm82Eltwise() = default;
|
|
virtual ErrorCode onExecute(const std::vector<Tensor *> &inputs, const std::vector<Tensor *> &outputs) override;
|
|
|
|
private:
|
|
EltwiseType mType;
|
|
};
|
|
|
|
} // namespace MNN
|
|
|
|
#endif /* Arm82Eltwise_hpp */
|
|
#endif
|