ArmNN
 23.02
NeonBaseWorkload.hpp
Go to the documentation of this file.
1 //
2 // Copyright © 2022 Arm Ltd and Contributors. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
6 #pragma once
7 
9 
10 namespace armnn
11 {
12 template <typename QueueDescriptor>
13 class NeonBaseWorkload : public BaseWorkload<QueueDescriptor>
14 {
15 public:
16  NeonBaseWorkload(const QueueDescriptor& descriptor, const WorkloadInfo& info)
17  : BaseWorkload<QueueDescriptor>(descriptor, info)
18  {}
19 
20  // Replace input tensor handle with the given TensorHandle and call Reconfigure()
21  void ReplaceInputTensorHandle(ITensorHandle* tensorHandle, unsigned int slot) override
22  {
23  ITensorHandle* backupHandle = this->m_Data.m_Inputs[slot];
24  this->m_Data.m_Inputs[slot] = tensorHandle;
25  try
26  {
27  Reconfigure();
28  }
30  {
31  // Cannot reconfigure, revert the slot back and throw the exception.
32  this->m_Data.m_Inputs[slot] = backupHandle;
33  throw e;
34  }
35  }
36 
37  // Replace output tensor handle with the given TensorHandle and call Reconfigure()
38  void ReplaceOutputTensorHandle(ITensorHandle* tensorHandle, unsigned int slot) override
39  {
40  ITensorHandle* backupHandle = this->m_Data.m_Outputs[slot];
41  this->m_Data.m_Outputs[slot] = tensorHandle;
42  try
43  {
44  Reconfigure();
45  }
47  {
48  // Cannot reconfigure, revert the slot back and throw the exception.
49  this->m_Data.m_Inputs[slot] = backupHandle;
50  throw e;
51  }
52  }
53 
54 protected:
55  // Reconfigure the workload configuration. Throw armnn::UnimplementedException by default.
56  virtual void Reconfigure()
57  {
58  throw armnn::UnimplementedException("Reconfigure not implemented for this workload");
59  }
60 };
61 } //namespace armnn
Workload.hpp
armnn::BaseWorkload::m_Data
QueueDescriptor m_Data
Definition: Workload.hpp:83
armnn
Copyright (c) 2021 ARM Limited and Contributors.
Definition: 01_00_quick_start.dox:6
armnn::ITensorHandle
Definition: ITensorHandle.hpp:15
armnn::UnimplementedException
Definition: Exceptions.hpp:98
armnn::BaseWorkload
Definition: Workload.hpp:33
armnn::QueueDescriptor
Definition: WorkloadData.hpp:24
armnn::NeonBaseWorkload::ReplaceInputTensorHandle
void ReplaceInputTensorHandle(ITensorHandle *tensorHandle, unsigned int slot) override
Definition: NeonBaseWorkload.hpp:21
armnn::WorkloadInfo
Contains information about TensorInfos of a layer.
Definition: WorkloadInfo.hpp:16
armnn::NeonBaseWorkload::ReplaceOutputTensorHandle
void ReplaceOutputTensorHandle(ITensorHandle *tensorHandle, unsigned int slot) override
Definition: NeonBaseWorkload.hpp:38
armnn::QueueDescriptor::m_Outputs
std::vector< ITensorHandle * > m_Outputs
Definition: WorkloadData.hpp:27
armnn::NeonBaseWorkload
Definition: NeonBaseWorkload.hpp:13
armnn::NeonBaseWorkload::Reconfigure
virtual void Reconfigure()
Definition: NeonBaseWorkload.hpp:56
armnn::NeonBaseWorkload::NeonBaseWorkload
NeonBaseWorkload(const QueueDescriptor &descriptor, const WorkloadInfo &info)
Definition: NeonBaseWorkload.hpp:16
armnn::QueueDescriptor::m_Inputs
std::vector< ITensorHandle * > m_Inputs
Definition: WorkloadData.hpp:26
armnn::BoostLogSeverityMapping::info
@ info