From 6940dd720ebb6b3d1df8ca203ab696daefe58189 Mon Sep 17 00:00:00 2001 From: Jim Flynn Date: Fri, 20 Mar 2020 12:25:56 +0000 Subject: renamed Documentation folder 20.02 and added .nojekyll file Signed-off-by: Jim Flynn --- ...eline_capture_command_handler_8hpp_source.xhtml | 129 --------------------- 1 file changed, 129 deletions(-) delete mode 100644 Documentation/_timeline_capture_command_handler_8hpp_source.xhtml (limited to 'Documentation/_timeline_capture_command_handler_8hpp_source.xhtml') diff --git a/Documentation/_timeline_capture_command_handler_8hpp_source.xhtml b/Documentation/_timeline_capture_command_handler_8hpp_source.xhtml deleted file mode 100644 index ef8c909d43..0000000000 --- a/Documentation/_timeline_capture_command_handler_8hpp_source.xhtml +++ /dev/null @@ -1,129 +0,0 @@ - - - - - - - - - - - - - -ArmNN: src/timelineDecoder/TimelineCaptureCommandHandler.hpp Source File - - - - - - - - - - - - - - - - -
-
- - - - ArmNN - - - -
-
-  20.02 -
-
-
- - - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
-
TimelineCaptureCommandHandler.hpp
-
-
-Go to the documentation of this file.
1 //
2 // Copyright © 2019 Arm Ltd. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
6 #pragma once
7 
10 
11 #include <Packet.hpp>
12 #include <ProfilingUtils.hpp>
13 
14 namespace armnn
15 {
16 
17 namespace timelinedecoder
18 {
19 
22 {
23  // Utils
24  uint32_t uint32_t_size = sizeof(uint32_t);
25  uint32_t uint64_t_size = sizeof(uint64_t);
26 
27  using ReadFunction = void (TimelineCaptureCommandHandler::*)(const unsigned char*, uint32_t&);
28 
29 public:
30  TimelineCaptureCommandHandler(uint32_t familyId,
31  uint32_t packetId,
32  uint32_t version,
33  ITimelineDecoder& timelineDecoder,
34  uint32_t threadId_size)
35  : CommandHandlerFunctor(familyId, packetId, version),
36  m_TimelineDecoder(timelineDecoder),
37  m_ThreadIdSize(threadId_size),
38  m_PacketLength(0)
39  {}
40 
41  void operator()(const armnn::profiling::Packet& packet) override;
42 
43  void ReadLabel(const unsigned char* data, uint32_t& offset);
44  void ReadEntity(const unsigned char* data, uint32_t& offset);
45  void ReadEventClass(const unsigned char* data, uint32_t& offset);
46  void ReadRelationship(const unsigned char* data, uint32_t& offset);
47  void ReadEvent(const unsigned char* data, uint32_t& offset);
48 
49 private:
50  void ParseData(const armnn::profiling::Packet& packet);
51 
52  ITimelineDecoder& m_TimelineDecoder;
53 
54  const uint32_t m_ThreadIdSize;
55  unsigned int m_PacketLength;
56  static const ReadFunction m_ReadFunctions[];
57 
58 };
59 
60 } //namespace gatordmock
61 
62 } //namespace armnn
- - - -
Copyright (c) 2020 ARM Limited.
- -
void ReadEventClass(const unsigned char *data, uint32_t &offset)
-
void ReadRelationship(const unsigned char *data, uint32_t &offset)
-
TimelineCaptureCommandHandler(uint32_t familyId, uint32_t packetId, uint32_t version, ITimelineDecoder &timelineDecoder, uint32_t threadId_size)
- - -
void operator()(const armnn::profiling::Packet &packet) override
-
void ReadLabel(const unsigned char *data, uint32_t &offset)
-
void ReadEntity(const unsigned char *data, uint32_t &offset)
- -
void ReadEvent(const unsigned char *data, uint32_t &offset)
-
-
- - - - -- cgit v1.2.1