From 59a950cefe927d002aa00d7c3af54f4389e00162 Mon Sep 17 00:00:00 2001 From: Matteo Martincigh Date: Thu, 13 Dec 2018 12:48:25 +0000 Subject: IVGCVSW-2377 Add no-op factory implementations for all backends for the Greater operation * Added QueueDescriptor in WorkloadData.hpp * Added CreateGreater function in WorkloadFactory.hpp * Added stub implementation of the CreateGreater function in RefWorkloadFactory, NeonWorkloadFactory and ClWorkloadFactory * Added GreaterLayer stub implementation * Renamed ArithmeticBaseLayer to ElementwiseBaseLayer Change-Id: I7e38c2936de905da921a92ba3f918478169ec7f5 --- src/armnn/layers/DivisionLayer.hpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/armnn/layers/DivisionLayer.hpp') diff --git a/src/armnn/layers/DivisionLayer.hpp b/src/armnn/layers/DivisionLayer.hpp index eaede4563b..158f8e8b5d 100644 --- a/src/armnn/layers/DivisionLayer.hpp +++ b/src/armnn/layers/DivisionLayer.hpp @@ -2,14 +2,15 @@ // Copyright © 2017 Arm Ltd. All rights reserved. // SPDX-License-Identifier: MIT // + #pragma once -#include "ArithmeticBaseLayer.hpp" +#include "ElementwiseBaseLayer.hpp" namespace armnn { -class DivisionLayer : public ArithmeticBaseLayer +class DivisionLayer : public ElementwiseBaseLayer { public: virtual std::unique_ptr CreateWorkload(const Graph& graph, -- cgit v1.2.1