xref: /aosp_15_r20/external/armnn/profiling/client/include/CounterValue.hpp (revision 89c4ff92f2867872bb9e2354d150bf0c8c502810)
1 //
2 // Copyright © 2022 Arm Ltd. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
6 #pragma once
7 
8 namespace arm
9 {
10 
11 namespace pipe
12 {
13 
14 struct CounterValue
15 {
CounterValuearm::pipe::CounterValue16     CounterValue(uint16_t id, uint32_t value) :
17         counterId(id), counterValue(value) {}
18     uint16_t counterId;
19     uint32_t counterValue;
20 };
21 
22 }    // namespace pipe
23 
24 }    // namespace arm
25