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 --- 21.02/_i_counter_registry_8hpp_source.xhtml | 128 ++++++++++++++++++++++++++++ 1 file changed, 128 insertions(+) create mode 100644 21.02/_i_counter_registry_8hpp_source.xhtml (limited to '21.02/_i_counter_registry_8hpp_source.xhtml') diff --git a/21.02/_i_counter_registry_8hpp_source.xhtml b/21.02/_i_counter_registry_8hpp_source.xhtml new file mode 100644 index 0000000000..52eff644c8 --- /dev/null +++ b/21.02/_i_counter_registry_8hpp_source.xhtml @@ -0,0 +1,128 @@ + + + + + + + + + + + + + +ArmNN: src/profiling/ICounterRegistry.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  21.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
ICounterRegistry.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 
8 #include <armnn/Optional.hpp>
9 #include <armnn/BackendId.hpp>
10 
11 namespace armnn
12 {
13 
14 namespace profiling
15 {
16 
18 {
19 public:
20  virtual ~ICounterRegistry() {}
21 
22  // Register profiling objects
23  virtual const Category* RegisterCategory (const std::string& categoryName) = 0;
24 
25  virtual const Device* RegisterDevice (const std::string& deviceName,
26  uint16_t cores,
27  const Optional<std::string>& parentCategoryName) = 0;
28 
29  virtual const CounterSet* RegisterCounterSet(const std::string& counterSetName,
30  uint16_t count,
31  const Optional<std::string>& parentCategoryName) = 0;
32 
33  virtual const Counter* RegisterCounter(const BackendId& backendId,
34  const uint16_t uid,
35  const std::string& parentCategoryName,
36  uint16_t counterClass,
37  uint16_t interpolation,
38  double multiplier,
39  const std::string& name,
40  const std::string& description,
41  const Optional<std::string>& units,
42  const Optional<uint16_t>& numberOfCores,
43  const Optional<uint16_t>& deviceUid,
44  const Optional<uint16_t>& counterSetUid) = 0;
45 
46 };
47 
48 } // namespace profiling
49 
50 } // namespace armnn
+
virtual const Device * RegisterDevice(const std::string &deviceName, uint16_t cores, const Optional< std::string > &parentCategoryName)=0
+ + +
virtual const Counter * RegisterCounter(const BackendId &backendId, const uint16_t uid, const std::string &parentCategoryName, uint16_t counterClass, uint16_t interpolation, double multiplier, const std::string &name, const std::string &description, const Optional< std::string > &units, const Optional< uint16_t > &numberOfCores, const Optional< uint16_t > &deviceUid, const Optional< uint16_t > &counterSetUid)=0
+
Copyright (c) 2021 ARM Limited and Contributors.
+
virtual const CounterSet * RegisterCounterSet(const std::string &counterSetName, uint16_t count, const Optional< std::string > &parentCategoryName)=0
+ + + +
virtual const Category * RegisterCategory(const std::string &categoryName)=0
+ + + + +
+
+ + + + -- cgit v1.2.1