From f4019872c1134c6fcc1d6993e5746f55c1e79208 Mon Sep 17 00:00:00 2001 From: Nikhil Raj Date: Tue, 8 Mar 2022 20:01:38 +0000 Subject: IVGCVSW-6819 Fix the directory structure and broken link to latest docu Signed-off-by: Nikhil Raj Change-Id: I05b559d15faf92c76ff536719693b361316be4f3 --- 22.02/_null_profiling_connection_8hpp_source.xhtml | 119 +++++++++++++++++++++ 1 file changed, 119 insertions(+) create mode 100644 22.02/_null_profiling_connection_8hpp_source.xhtml (limited to '22.02/_null_profiling_connection_8hpp_source.xhtml') diff --git a/22.02/_null_profiling_connection_8hpp_source.xhtml b/22.02/_null_profiling_connection_8hpp_source.xhtml new file mode 100644 index 0000000000..6d844ac7d7 --- /dev/null +++ b/22.02/_null_profiling_connection_8hpp_source.xhtml @@ -0,0 +1,119 @@ + + + + + + + + + + + + + +ArmNN: src/profiling/NullProfilingConnection.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  22.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
NullProfilingConnection.hpp
+
+
+Go to the documentation of this file.
1 //
2 // Copyright © 2020 Arm Ltd. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
6 #pragma once
7 
9 
11 
12 namespace armnn
13 {
14 
15 namespace profiling
16 {
17 
19 {
20  virtual bool IsOpen() const override { return true; };
21 
22  virtual void Close() override {};
23 
24  virtual bool WritePacket(const unsigned char* buffer, uint32_t length) override
25  {
26  armnn::IgnoreUnused(buffer);
27  armnn::IgnoreUnused(length);
28  return true;
29  };
30 
31  virtual Packet ReadPacket(uint32_t timeout) override
32  {
33  armnn::IgnoreUnused(timeout);
34  return Packet(0);
35  }
36 
37 };
38 
39 } // namespace profiling
40 
41 } // namespace armnn
+ +
Copyright (c) 2021 ARM Limited and Contributors.
+
void IgnoreUnused(Ts &&...)
+ + +
+
+ + + + -- cgit v1.2.1