// // NPUCommonExecution.cpp // MNN // // Created by MNN on 2019/02/28. // Copyright © 2018, Alibaba Group Holding Limited // #include "NPUCommonExecution.hpp" namespace MNN { NPUCommonExecution::NPUCommonExecution(Backend *backend, const Op *op) : Execution(backend), mOp(op) { mNpuBackend = (NPUBackend *)backend; } ErrorCode NPUCommonExecution::onResize(const std::vector &inputs, const std::vector &outputs) { return NO_ERROR; } ErrorCode NPUCommonExecution::onExecute(const std::vector &inputs, const std::vector &outputs) { return NO_ERROR; } }; // namespace MNN