From 03c7ff3f6188240baaeaeb405a357a0c58195fec Mon Sep 17 00:00:00 2001 From: Nikhil Raj Date: Tue, 22 Aug 2023 12:00:04 +0100 Subject: IVGCVSW-7702 Update Doxygen Docu for 23.08 Signed-off-by: Nikhil Raj Change-Id: I357a9f7e47614589327c1ac5d95b6224ff77103d --- 23.08/_minimum_8hpp_source.html | 141 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 141 insertions(+) create mode 100644 23.08/_minimum_8hpp_source.html (limited to '23.08/_minimum_8hpp_source.html') diff --git a/23.08/_minimum_8hpp_source.html b/23.08/_minimum_8hpp_source.html new file mode 100644 index 0000000000..718e03f338 --- /dev/null +++ b/23.08/_minimum_8hpp_source.html @@ -0,0 +1,141 @@ + + + + + + + + +Arm NN: src/backends/reference/workloads/Minimum.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  23.08 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
Minimum.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 
+
8 namespace armnn
+
9 {
+
10 
+
11 template<typename T>
+
12 struct minimum
+
13 {
+
14  typedef T result_type;
+ +
16 
+
17  T
+
18  operator()(const T& input1, const T& input2) const
+
19  {
+
20  return std::min(input1, input2);
+
21  }
+
22 };
+
23 
+
24 } //namespace armnn
+
25 
+
+
+ +
T operator()(const T &input1, const T &input2) const
Definition: Minimum.hpp:18
+ +
Copyright (c) 2021 ARM Limited and Contributors.
+
T first_argument_type
Definition: Minimum.hpp:15
+ + + + -- cgit v1.2.1