blob: 769291c700c40ba5fbadc2580213b425999150c1 [file] [log] [blame]
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// See LICENSE file in the project root for full license information.
//
#pragma once
#include <backends/Workload.hpp>
#include <backends/NeonWorkloadUtils.hpp>
namespace armnn
{
// Base class template providing an implementation of the Splitter layer common to all data types.
template <armnn::DataType... DataTypes>
class NeonBaseSplitterWorkload : public TypedWorkload<SplitterQueueDescriptor, DataTypes...>
{
public:
using TypedWorkload<SplitterQueueDescriptor, DataTypes...>::TypedWorkload;
virtual void Execute() const override
{
// With subtensors, splitter is a no-op.
}
};
} //namespace armnn