// // Copyright © 2017 Arm Ltd. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include "BaseIterator.hpp" #include namespace armnn { template struct ElementwiseFunction { using OutType = typename Functor::result_type; using InType = typename Functor::first_argument_type; ElementwiseFunction(const TensorShape& inShape0, const TensorShape& inShape1, const TensorShape& outShape, armnn::Decoder& inData0, armnn::Decoder& inData1, armnn::Encoder& outData); }; } //namespace armnn