ArmNN
 25.11
Loading...
Searching...
No Matches
NeonSpaceToBatchNdWorkload.hpp
Go to the documentation of this file.
1//
2// Copyright © 2020-2023 Arm Ltd and Contributors. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#pragma once
7
10
11#include <arm_compute/runtime/NEON/functions/NESpaceToBatchLayer.h>
12#include <arm_compute/runtime/NEON/functions/NEReshapeLayer.h>
13
14namespace armnn
15{
16
17arm_compute::Status NeonSpaceToBatchNdWorkloadValidate(const TensorInfo& input,
18 const TensorInfo& output,
19 const SpaceToBatchNdDescriptor& descriptor);
20
21class NeonSpaceToBatchNdWorkload : public NeonBaseWorkload<SpaceToBatchNdQueueDescriptor>
22{
23public:
25
27
28 virtual void Execute() const override;
29
30private:
31 mutable std::unique_ptr<arm_compute::NESpaceToBatchLayer> m_Layer;
32 mutable std::unique_ptr<arm_compute::NEReshapeLayer> m_LayerReshapeInput;
33 mutable std::unique_ptr<arm_compute::NEReshapeLayer> m_LayerReshapeOutput;
34 arm_compute::Tensor m_ReshapeInputTensor;
35 arm_compute::Tensor m_ReshapeOutputTensor;
36};
37
38} //namespace armnn
NeonBaseWorkload(const SpaceToBatchNdQueueDescriptor &descriptor, const WorkloadInfo &info)
NeonSpaceToBatchNdWorkload(const SpaceToBatchNdQueueDescriptor &descriptor, const WorkloadInfo &info)
Copyright (c) 2021 ARM Limited and Contributors.
arm_compute::Status NeonSpaceToBatchNdWorkloadValidate(const TensorInfo &input, const TensorInfo &output, const SpaceToBatchNdDescriptor &descriptor)
A SpaceToBatchNdDescriptor for the SpaceToBatchNdLayer.
Contains information about TensorInfos of a layer.