From f86be93b7492b381370cae7bf71eca8572a0cbae Mon Sep 17 00:00:00 2001 From: Matthew Sloyan Date: Tue, 24 Aug 2021 16:27:15 +0100 Subject: IVGCVSW-5924 Update 21.08 Doxygen Documents * Also updated latest symlink. Signed-off-by: Matthew Sloyan Change-Id: If9b4e0e52464abdf797b9eb858ae19bcc64c2aea --- 21.08/_log_8hpp_source.xhtml | 116 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 116 insertions(+) create mode 100644 21.08/_log_8hpp_source.xhtml (limited to '21.08/_log_8hpp_source.xhtml') diff --git a/21.08/_log_8hpp_source.xhtml b/21.08/_log_8hpp_source.xhtml new file mode 100644 index 0000000000..90a43ed7e1 --- /dev/null +++ b/21.08/_log_8hpp_source.xhtml @@ -0,0 +1,116 @@ + + + + + + + + + + + + + +ArmNN: src/backends/reference/workloads/Log.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  21.08 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
Log.hpp
+
+
+Go to the documentation of this file.
1 //
2 // Copyright © 2021 Arm Ltd and Contributors. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
6 #pragma once
7 
8 #include <iostream>
9 
10 namespace armnn
11 {
12  template<typename T>
13 struct log : public std::unary_function<T, T>
14  {
15  T
16  operator () (const T& inputData) const
17  {
18  // computes natural logarithm of inputData
19  return std::log(inputData);
20  }
21  };
22 
23 } //namespace armnn
Copyright (c) 2021 ARM Limited and Contributors.
+ +
T operator()(const T &inputData) const
Definition: Log.hpp:16
+
+
+ + + + -- cgit v1.2.1