blob: eafb6444f6c2de12197cec78768695b908df1426 [file] [log] [blame]
David Beck591cdb72018-09-11 16:37:14 +01001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#pragma once
7
8#include <armnn/Tensor.hpp>
9
10namespace armnn
11{
12
13template <typename Functor>
14struct ArithmeticFunction
15{
16 ArithmeticFunction(const TensorShape& inShape0,
17 const TensorShape& inShape1,
18 const TensorShape& outShape,
19 const float* inData0,
20 const float* inData1,
21 float* outData);
22};
23
24} //namespace armnn