// // Copyright © 2017 Arm Ltd. All rights reserved. // See LICENSE file in the project root for full license information. // #pragma once #include namespace armnn { // Base class template providing an implementation of the Merger layer common to all data types template class NeonBaseMergerWorkload : public TypedWorkload { public: using TypedWorkload::TypedWorkload; virtual void Execute() const override { // With subtensors, merger is a no-op } }; } //namespace armnn