Files
2026-07-13 13:33:03 +08:00

28 lines
645 B
C++

//
// NPUEltwise.hpp
// MNN
//
// Created by MNN on b'2020/10/15'.
// Copyright © 2018, Alibaba Group Holding Limited
//
#ifndef NPUDEMO_NPUELTWISE_HPP
#define NPUDEMO_NPUELTWISE_HPP
#include "NPUCommonExecution.hpp"
#include "NPUBackend.hpp"
namespace MNN {
class NPUEltwise : public NPUCommonExecution {
public:
NPUEltwise(Backend *b, const Op *op, const std::vector<Tensor *> &inputs, const std::vector<Tensor *> &outputs);
ErrorCode onResize(const std::vector<Tensor *> &inputs, const std::vector<Tensor *> &outputs);
virtual ~NPUEltwise() = default;
private:
};
} // namespace MNN
#endif // NPUDEMO_NPUELTWISE_HPP