ArmNN
 20.05
NeonFloorFloatWorkload.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 
9 
10 #include <arm_compute/runtime/IFunction.h>
11 #include <arm_compute/runtime/Tensor.h>
12 
13 #include <memory>
14 
15 namespace armnn
16 {
17 
18 class NeonFloorFloatWorkload : public FloatWorkload<FloorQueueDescriptor>
19 {
20 public:
22  virtual void Execute() const override;
23 
24 private:
25  std::unique_ptr<arm_compute::IFunction> m_Layer;
26 };
27 
28 } //namespace armnn
29 
30 
31 
32 
Copyright (c) 2020 ARM Limited.
NeonFloorFloatWorkload(const FloorQueueDescriptor &descriptor, const WorkloadInfo &info)
Contains information about inputs and outputs to a layer.
virtual void Execute() const override