From d57415d9a2117da9cc5c58f8b5e39ba7455417d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89anna=20=C3=93=20Cath=C3=A1in?= Date: Wed, 28 Nov 2018 16:24:38 +0000 Subject: IVGCVSW-2202 Refactoring Arithmetic* names to Elementwise* names for workloads and workload functions Change-Id: I6f3fce12a55f7d38ceafcdfcd6b5181bf56e2c09 --- .../reference/workloads/ElementwiseFunction.hpp | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/backends/reference/workloads/ElementwiseFunction.hpp (limited to 'src/backends/reference/workloads/ElementwiseFunction.hpp') diff --git a/src/backends/reference/workloads/ElementwiseFunction.hpp b/src/backends/reference/workloads/ElementwiseFunction.hpp new file mode 100644 index 0000000000..5011616c0c --- /dev/null +++ b/src/backends/reference/workloads/ElementwiseFunction.hpp @@ -0,0 +1,24 @@ +// +// Copyright © 2017 Arm Ltd. All rights reserved. +// SPDX-License-Identifier: MIT +// + +#pragma once + +#include + +namespace armnn +{ + +template +struct ElementwiseFunction +{ + ElementwiseFunction(const TensorShape& inShape0, + const TensorShape& inShape1, + const TensorShape& outShape, + const float* inData0, + const float* inData1, + float* outData); +}; + +} //namespace armnn -- cgit v1.2.1