aboutsummaryrefslogtreecommitdiff
path: root/src/backends/RefWorkloads/ArithmeticFunction.hpp
blob: eafb6444f6c2de12197cec78768695b908df1426 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//

#pragma once

#include <armnn/Tensor.hpp>

namespace armnn
{

template <typename Functor>
struct ArithmeticFunction
{
    ArithmeticFunction(const TensorShape& inShape0,
                       const TensorShape& inShape1,
                       const TensorShape& outShape,
                       const float* inData0,
                       const float* inData1,
                       float* outData);
};

} //namespace armnn