MNN/source/backend/cpu/CPUSelect.hpp

24 lines
494 B
C++
Raw Normal View History

//
// CPUSelect.hpp
// MNN
//
// Created by MNN on 2019/5/22.
// Copyright © 2018 Alibaba. All rights reserved.
//
#ifndef CPUSelect_hpp
#define CPUSelect_hpp
#include "CPUBackend.hpp"
namespace MNN {
class CPUSelect : public Execution {
public:
CPUSelect(Backend *bn) : Execution(bn) {
// Do nothing
}
virtual ErrorCode onExecute(const std::vector<Tensor *> &inputs, const std::vector<Tensor *> &outputs) override;
};
}; // namespace MNN
#endif /* CPUSelect_hpp */