aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/graph/TypeLoader.h
diff options
context:
space:
mode:
authorGeorgios Pinitas <georgios.pinitas@arm.com>2018-07-03 12:06:23 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:54:10 +0000
commit12be7ab4876f77fecfab903df70791623219b3da (patch)
tree1cfa6852e60948bee9db0831a9f3abc97a2031c8 /arm_compute/graph/TypeLoader.h
parente39334c15c7fd141bb8173d5017ea5ca157fca2c (diff)
downloadComputeLibrary-12be7ab4876f77fecfab903df70791623219b3da.tar.gz
COMPMID-1310: Create graph validation executables.
Change-Id: I9e0b57b1b83fe5a95777cdaeddba6ecef650bafc Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/138697 Reviewed-by: Anthony Barbier <anthony.barbier@arm.com> Tested-by: Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'arm_compute/graph/TypeLoader.h')
-rw-r--r--arm_compute/graph/TypeLoader.h105
1 files changed, 105 insertions, 0 deletions
diff --git a/arm_compute/graph/TypeLoader.h b/arm_compute/graph/TypeLoader.h
new file mode 100644
index 0000000000..77f096133d
--- /dev/null
+++ b/arm_compute/graph/TypeLoader.h
@@ -0,0 +1,105 @@
+/*
+ * Copyright (c) 2018 ARM Limited.
+ *
+ * SPDX-License-Identifier: MIT
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to
+ * deal in the Software without restriction, including without limitation the
+ * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
+ * sell copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in all
+ * copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+#ifndef __ARM_COMPUTE_GRAPH_TYPE_LOADER_H__
+#define __ARM_COMPUTE_GRAPH_TYPE_LOADER_H__
+
+#include "arm_compute/graph/Types.h"
+
+#include <istream>
+
+namespace arm_compute
+{
+/** Converts a string to a strong types enumeration @ref DataType
+ *
+ * @param[in] name String to convert
+ *
+ * @return Converted DataType enumeration
+ */
+arm_compute::DataType data_type_from_name(const std::string &name);
+
+/** Input Stream operator for @ref DataType
+ *
+ * @param[in] stream Stream to parse
+ * @param[out] data_type Output data type
+ *
+ * @return Updated stream
+ */
+inline ::std::istream &operator>>(::std::istream &stream, arm_compute::DataType &data_type)
+{
+ std::string value;
+ stream >> value;
+ data_type = data_type_from_name(value);
+ return stream;
+}
+
+/** Converts a string to a strong types enumeration @ref DataLayout
+ *
+ * @param[in] name String to convert
+ *
+ * @return Converted DataLayout enumeration
+ */
+arm_compute::DataLayout data_layout_from_name(const std::string &name);
+
+/** Input Stream operator for @ref DataLayout
+ *
+ * @param[in] stream Stream to parse
+ * @param[out] data_layout Output data layout
+ *
+ * @return Updated stream
+ */
+inline ::std::istream &operator>>(::std::istream &stream, arm_compute::DataLayout &data_layout)
+{
+ std::string value;
+ stream >> value;
+ data_layout = data_layout_from_name(value);
+ return stream;
+}
+
+namespace graph
+{
+/** Converts a string to a strong types enumeration @ref Target
+ *
+ * @param[in] name String to convert
+ *
+ * @return Converted Target enumeration
+ */
+Target target_from_name(const std::string &name);
+
+/** Input Stream operator for @ref Target
+ *
+ * @param[in] stream Stream to parse
+ * @param[out] target Output target
+ *
+ * @return Updated stream
+ */
+inline ::std::istream &operator>>(::std::istream &stream, Target &target)
+{
+ std::string value;
+ stream >> value;
+ target = target_from_name(value);
+ return stream;
+}
+} // namespace graph
+} // namespace arm_compute
+#endif /* __ARM_COMPUTE_GRAPH_TYPE_LOADER_H__ */