aboutsummaryrefslogtreecommitdiff
path: root/src/armnnUtils/PrototxtConversions.hpp
diff options
context:
space:
mode:
authorMatthew Bentham <matthew.bentham@arm.com>2019-01-21 15:45:51 +0000
committerAron Virginas-Tar <Aron.Virginas-Tar@arm.com>2019-01-23 10:12:51 +0000
commit4057d91322738e446c0c2ce5f3a8cf665d935763 (patch)
tree352dff895fd187ed83d0448294505a76092c4bab /src/armnnUtils/PrototxtConversions.hpp
parent4951d84b1174a4bb0a5d9c900740f64201f765bf (diff)
downloadarmnn-4057d91322738e446c0c2ce5f3a8cf665d935763.tar.gz
IVGCVSW-2515 Fix compilation when TfParser is disabled
Change-Id: Ia0019134f76764cd4fe6ed9dc1423b8aba411d33
Diffstat (limited to 'src/armnnUtils/PrototxtConversions.hpp')
-rw-r--r--src/armnnUtils/PrototxtConversions.hpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/armnnUtils/PrototxtConversions.hpp b/src/armnnUtils/PrototxtConversions.hpp
new file mode 100644
index 0000000000..c90af9edff
--- /dev/null
+++ b/src/armnnUtils/PrototxtConversions.hpp
@@ -0,0 +1,16 @@
+//
+// Copyright © 2017 Arm Ltd. All rights reserved.
+// SPDX-License-Identifier: MIT
+//
+
+#pragma once
+
+#include <string>
+
+namespace armnnUtils
+{
+
+/// Converts an int value into the Prototxt octal representation
+std::string ConvertInt32ToOctalString(int value);
+
+} // namespace armnnUtils