1 // 2 // CoreMLBinary.hpp 3 // MNN 4 // 5 // Created by MNN on 2021/03/24. 6 // Copyright © 2018, Alibaba Group Holding Limited 7 // 8 9 #ifndef MNN_COREMLBIANRY_HPP 10 #define MNN_COREMLBIANRY_HPP 11 12 #include "CoreMLCommonExecution.hpp" 13 #include "CoreMLBackend.hpp" 14 15 namespace MNN { 16 17 class CoreMLBinary : public CoreMLCommonExecution { 18 public: 19 CoreMLBinary(Backend *b, const Op *op, const std::vector<Tensor *> &inputs, const std::vector<Tensor *> &outputs); 20 ErrorCode onResize(const std::vector<Tensor *> &inputs, const std::vector<Tensor *> &outputs); 21 virtual ~CoreMLBinary() = default; 22 }; 23 } // namespace MNN 24 25 #endif // MNN_COREMLBINARY_HPP 26