ArmNN
 20.08
RefConstantWorkload.hpp
Go to the documentation of this file.
1 //
2 // Copyright © 2017 Arm Ltd. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
6 #pragma once
7 
10 
11 #include <armnn/Types.hpp>
12 
13 namespace armnn
14 {
15 
16 // Base class template providing an implementation of the Constant layer common to all data types.
17 class RefConstantWorkload : public BaseWorkload<ConstantQueueDescriptor>
18 {
19 public:
21 
22  void PostAllocationConfigure() override;
23  virtual void Execute() const override;
24 };
25 
26 } //namespace armnn
Copyright (c) 2020 ARM Limited.
virtual void Execute() const override
RefConstantWorkload(const ConstantQueueDescriptor &descriptor, const WorkloadInfo &info)
Contains information about inputs and outputs to a layer.