aboutsummaryrefslogtreecommitdiff
path: root/src/backends/reference/workloads/RefSoftmaxUint8Workload.hpp
blob: bb7b2143c103c9b04ba4f43470cb551fcd977669 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//

#pragma once

#include <backendsCommon/Workload.hpp>
#include <backendsCommon/WorkloadData.hpp>

namespace armnn
{

class RefSoftmaxUint8Workload : public Uint8Workload<SoftmaxQueueDescriptor>
{
public:
    using Uint8Workload<SoftmaxQueueDescriptor>::Uint8Workload;
    virtual void Execute() const override;
};

} //namespace armnn