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/ArithmeticFunction.cpp | 29 ---------------------- 1 file changed, 29 deletions(-) delete mode 100644 src/backends/reference/workloads/ArithmeticFunction.cpp (limited to 'src/backends/reference/workloads/ArithmeticFunction.cpp') diff --git a/src/backends/reference/workloads/ArithmeticFunction.cpp b/src/backends/reference/workloads/ArithmeticFunction.cpp deleted file mode 100644 index fede138253..0000000000 --- a/src/backends/reference/workloads/ArithmeticFunction.cpp +++ /dev/null @@ -1,29 +0,0 @@ -// -// Copyright © 2017 Arm Ltd. All rights reserved. -// SPDX-License-Identifier: MIT -// - -#include "ArithmeticFunction.hpp" -#include "Broadcast.hpp" -#include - -namespace armnn -{ - -template -ArithmeticFunction::ArithmeticFunction(const TensorShape& inShape0, - const TensorShape& inShape1, - const TensorShape& outShape, - const float* inData0, - const float* inData1, - float* outData) -{ - BroadcastLoop(inShape0, inShape1, outShape).Unroll(Functor(), 0, inData0, inData1, outData); -} - -} //namespace armnn - -template struct armnn::ArithmeticFunction>; -template struct armnn::ArithmeticFunction>; -template struct armnn::ArithmeticFunction>; -template struct armnn::ArithmeticFunction>; -- cgit v1.2.1