blob: c90af9edff3c96c1a736dde6e345580454f84400 [file] [log] [blame]
Matthew Bentham4057d912019-01-21 15:45:51 +00001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#pragma once
7
8#include <string>
9
10namespace armnnUtils
11{
12
13/// Converts an int value into the Prototxt octal representation
14std::string ConvertInt32ToOctalString(int value);
15
16} // namespace armnnUtils