ArmNN
 25.11
Loading...
Searching...
No Matches
NeonSpaceToDepthWorkload.hpp
Go to the documentation of this file.
1//
2// Copyright © 2017 Arm Ltd and Contributors. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#pragma once
7
9
10#include "NeonBaseWorkload.hpp"
11
12#include <arm_compute/runtime/NEON/functions/NESpaceToDepthLayer.h>
13
14namespace armnn
15{
16
17arm_compute::Status NeonSpaceToDepthWorkloadValidate(const TensorInfo& input,
18 const TensorInfo& output,
19 const SpaceToDepthDescriptor& descriptor);
20
21class NeonSpaceToDepthWorkload : public NeonBaseWorkload<SpaceToDepthQueueDescriptor>
22{
23public:
26 virtual void Execute() const override;
27private:
28 mutable std::unique_ptr<arm_compute::NESpaceToDepthLayer> m_Layer;
29};
30
31} //namespace armnn
NeonBaseWorkload(const SpaceToDepthQueueDescriptor &descriptor, const WorkloadInfo &info)
NeonSpaceToDepthWorkload(const SpaceToDepthQueueDescriptor &descriptor, const WorkloadInfo &info)
virtual void Execute() const override
Copyright (c) 2021 ARM Limited and Contributors.
arm_compute::Status NeonSpaceToDepthWorkloadValidate(const TensorInfo &input, const TensorInfo &output, const SpaceToDepthDescriptor &descriptor)
A SpaceToDepthDescriptor for the SpaceToDepthLayer.
Contains information about TensorInfos of a layer.