• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //
2 // Copyright © 2017 Arm Ltd and Contributors. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
6 #pragma once
7 
8 #include "NeonBaseWorkload.hpp"
9 
10 #include <neon/workloads/NeonWorkloadUtils.hpp>
11 
12 #include <arm_compute/runtime/NEON/functions/NEElementwiseOperations.h>
13 
14 namespace armnn
15 {
16 
17 arm_compute::Status NeonMaximumWorkloadValidate(const TensorInfo& input0,
18                                                 const TensorInfo& input1,
19                                                 const TensorInfo& output);
20 
21 class NeonMaximumWorkload : public NeonBaseWorkload<MaximumQueueDescriptor>
22 {
23 public:
24     NeonMaximumWorkload(const MaximumQueueDescriptor& descriptor, const WorkloadInfo& info);
25 
26     virtual void Execute() const override;
27 
28 private:
29     mutable arm_compute::NEElementwiseMax m_MaxLayer;
30 };
31 
32 } //namespace armnn
33