aboutsummaryrefslogtreecommitdiff
path: root/tests/framework/instruments/SchedulerTimer.h
diff options
context:
space:
mode:
authorFreddie Liardet <frederick.liardet@arm.com>2021-06-17 13:30:11 +0100
committerfrederick.liardet <frederick.liardet@arm.com>2021-07-19 14:11:47 +0000
commit59fd7a722e5bc7e85309d6200bc37a772721a719 (patch)
treea02958337f472ff4ceaed46c454eaca6f137efe2 /tests/framework/instruments/SchedulerTimer.h
parent67354e0862a1dd171d41cc45aeb8a470d37708d7 (diff)
downloadComputeLibrary-59fd7a722e5bc7e85309d6200bc37a772721a719.tar.gz
Add layer data to JSON output
Add layer data information to SchedulerTimer JSON output. Resolves: COMPMID-4423 Change-Id: Ife78dee8afc0910cf47b135bc6809cc170ec4ed3 Signed-off-by: Freddie Liardet <frederick.liardet@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/5923 Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com> Comments-Addressed: Georgios Pinitas <georgios.pinitas@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'tests/framework/instruments/SchedulerTimer.h')
-rw-r--r--tests/framework/instruments/SchedulerTimer.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/framework/instruments/SchedulerTimer.h b/tests/framework/instruments/SchedulerTimer.h
index aa948d32a6..9cc0381a9a 100644
--- a/tests/framework/instruments/SchedulerTimer.h
+++ b/tests/framework/instruments/SchedulerTimer.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2017-2019 Arm Limited.
+ * Copyright (c) 2017-2019,2021 Arm Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -63,6 +63,7 @@ template <bool output_timestamps>
class SchedulerClock : public Instrument
{
public:
+ using LayerData = std::map<std::string, std::string>;
/** Construct a Scheduler timer.
*
* @param[in] scale_factor Measurement scale factor.
@@ -85,6 +86,7 @@ public:
void start() override;
void test_stop() override;
Instrument::MeasurementsMap measurements() const override;
+ std::string instrument_header() const override;
/** Kernel information */
struct kernel_info
@@ -96,6 +98,7 @@ public:
private:
std::list<kernel_info> _kernels;
+ std::map<std::string, LayerData> _layer_data_map;
IScheduler *_real_scheduler;
Scheduler::Type _real_scheduler_type;
std::function<decltype(graph::execute_task)> _real_graph_function;