From fd627ffaec8fd8801d980b4c91ee7c0607ab6aaf Mon Sep 17 00:00:00 2001 From: Jan Eilers Date: Thu, 25 Feb 2021 17:44:00 +0000 Subject: IVGCVSW-5687 Update Doxygen Docu * Update Doxygen Documentation for 21.02 release Signed-off-by: Jan Eilers Change-Id: I9ed2f9caab038836ea99d7b378d7899fe431a4e5 --- .../_print_packet_header_handler_8cpp_source.xhtml | 115 +++++++++++++++++++++ 1 file changed, 115 insertions(+) create mode 100644 21.02/_print_packet_header_handler_8cpp_source.xhtml (limited to '21.02/_print_packet_header_handler_8cpp_source.xhtml') diff --git a/21.02/_print_packet_header_handler_8cpp_source.xhtml b/21.02/_print_packet_header_handler_8cpp_source.xhtml new file mode 100644 index 0000000000..9cb681c8b3 --- /dev/null +++ b/21.02/_print_packet_header_handler_8cpp_source.xhtml @@ -0,0 +1,115 @@ + + + + + + + + + + + + + +ArmNN: src/profiling/test/PrintPacketHeaderHandler.cpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  21.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
PrintPacketHeaderHandler.cpp
+
+
+Go to the documentation of this file.
1 //
2 // Copyright © 2020 Arm Ltd and Contributors. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
7 
8 #include <iostream>
9 #include <sstream>
10 
11 namespace armnn
12 {
13 
14 namespace profiling
15 {
16 
17 std::vector<uint32_t> PrintPacketHeaderHandler::GetHeadersAccepted()
18 {
19  return std::vector<uint32_t>();
20 }
21 
22 void PrintPacketHeaderHandler::HandlePacket(const arm::pipe::Packet& packet)
23 {
24  std::stringstream ss;
25  ss << "Handler Received Outgoing Packet [" << packet.GetPacketFamily() << ":" << packet.GetPacketId() << "]";
26  ss << " Length [" << packet.GetLength() << "]" << std::endl;
27  std::cout << ss.str() << std::endl;
28 };
29 
30 } // namespace profiling
31 
32 } // namespace armnn
Copyright (c) 2021 ARM Limited and Contributors.
+ +
+
+ + + + -- cgit v1.2.1