aboutsummaryrefslogtreecommitdiff
path: root/src/backends/reference/workloads/RefGatherWorkload.hpp
diff options
context:
space:
mode:
authorKevin May <kevin.may@arm.com>2022-03-02 12:11:31 +0000
committerKevin May <kevin.may@arm.com>2022-03-02 12:11:31 +0000
commit998a20832fd511de75c2cd935b7a0e851e91156d (patch)
tree0839bcc53555b06887708cb56429735b8315472d /src/backends/reference/workloads/RefGatherWorkload.hpp
parent138a88cf568fbc420a310344903f7eb9dec8e1e3 (diff)
downloadarmnn-998a20832fd511de75c2cd935b7a0e851e91156d.tar.gz
Typo in Guide
* Only file changed is shim/BuildGuideShimSupportLibrary.md * All other files are merge squash from Arm NN 22.02 Signed-off-by: Kevin May <kevin.may@arm.com> Change-Id: Id82a6e9ac8abf74c1073c08744712f50e98dece0
Diffstat (limited to 'src/backends/reference/workloads/RefGatherWorkload.hpp')
-rw-r--r--src/backends/reference/workloads/RefGatherWorkload.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backends/reference/workloads/RefGatherWorkload.hpp b/src/backends/reference/workloads/RefGatherWorkload.hpp
index a2698e3a25..ec880a5109 100644
--- a/src/backends/reference/workloads/RefGatherWorkload.hpp
+++ b/src/backends/reference/workloads/RefGatherWorkload.hpp
@@ -5,7 +5,7 @@
#pragma once
-#include <armnn/backends/Workload.hpp>
+#include "RefBaseWorkload.hpp"
#include <armnn/backends/WorkloadData.hpp>
#include <armnn/TypesUtils.hpp>
@@ -16,10 +16,10 @@
namespace armnn
{
-class RefGatherWorkload : public BaseWorkload<GatherQueueDescriptor>
+class RefGatherWorkload : public RefBaseWorkload<GatherQueueDescriptor>
{
public:
- using BaseWorkload<GatherQueueDescriptor>::BaseWorkload;
+ using RefBaseWorkload<GatherQueueDescriptor>::RefBaseWorkload;
void Execute() const override;
void ExecuteAsync(WorkingMemDescriptor& workingMemDescriptor) override;
private: