ArmNN
 25.11
Loading...
Searching...
No Matches
RefDetectionPostProcessWorkload.hpp
Go to the documentation of this file.
1//
2// Copyright © 2022, 2024 Arm Ltd and Contributors. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#pragma once
7
8#include "RefBaseWorkload.hpp"
10
11namespace armnn
12{
13
14class RefDetectionPostProcessWorkload : public RefBaseWorkload<DetectionPostProcessQueueDescriptor>
15{
16public:
18 const WorkloadInfo& info);
19 void Execute() const override;
20
21private:
22 void Execute(std::vector<ITensorHandle*> inputs, std::vector<ITensorHandle*> outputs) const;
23 std::unique_ptr<ScopedTensorHandle> m_Anchors;
24};
25
26} //namespace armnn
RefBaseWorkload(const DetectionPostProcessQueueDescriptor &descriptor, const WorkloadInfo &info)
RefDetectionPostProcessWorkload(const DetectionPostProcessQueueDescriptor &descriptor, const WorkloadInfo &info)
void Execute() const override
Copyright (c) 2021 ARM Limited and Contributors.
Contains information about TensorInfos of a layer.