blob: 12770aaee55a4c92d1de9abf4beb96c3012be61c [file] [log] [blame]
Ferran Balaguer73882172019-09-02 16:39:42 +01001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#pragma once
7
8#include <stdint.h>
9
10namespace armnn
11{
12
13namespace profiling
14{
15
16void WriteUint32(unsigned char* buffer, unsigned int offset, uint32_t value);
17
18void WriteUint16(unsigned char* buffer, unsigned int offset, uint16_t value);
19
20uint32_t ReadUint32(const unsigned char* buffer, unsigned int offset);
21
22uint16_t ReadUint16(const unsigned char* buffer, unsigned int offset);
23
24} // namespace profiling
25
26} // namespace armnn