ArmNN
 25.11
Loading...
Searching...
No Matches
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
10namespace armnn
11{
12template <typename QueueDescriptor>
13class NeonBaseWorkload : public BaseWorkload<QueueDescriptor>
14{
15public:
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 {
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 {
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
54protected:
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
BaseWorkload(const QueueDescriptor &descriptor, const WorkloadInfo &info)
Definition Workload.hpp:35
QueueDescriptor m_Data
Definition Workload.hpp:74
NeonBaseWorkload(const QueueDescriptor &descriptor, const WorkloadInfo &info)
void ReplaceInputTensorHandle(ITensorHandle *tensorHandle, unsigned int slot) override
void ReplaceOutputTensorHandle(ITensorHandle *tensorHandle, unsigned int slot) override
Copyright (c) 2021 ARM Limited and Contributors.
Contains information about TensorInfos of a layer.