ArmNN
 22.02
ClBaseWorkload.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 ClBaseWorkload : public BaseWorkload<QueueDescriptor>
14 {
15 public:
16  ClBaseWorkload(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
void ReplaceOutputTensorHandle(ITensorHandle *tensorHandle, unsigned int slot) override
virtual void Reconfigure()
Copyright (c) 2021 ARM Limited and Contributors.
void ReplaceInputTensorHandle(ITensorHandle *tensorHandle, unsigned int slot) override
QueueDescriptor m_Data
Definition: Workload.hpp:77
ClBaseWorkload(const QueueDescriptor &descriptor, const WorkloadInfo &info)
std::vector< ITensorHandle * > m_Outputs
Contains information about TensorInfos of a layer.
std::vector< ITensorHandle * > m_Inputs