From b6f83b0f84fcedd7dcf93026cc584536c78dd10b Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EC=9D=B4=ED=95=9C=EC=A2=85/=EB=8F=99=EC=9E=91=EC=A0=9C?= =?utf8?q?=EC=96=B4Lab=28SR=29/Engineer/=EC=82=BC=EC=84=B1=EC=A0=84?= =?utf8?q?=EC=9E=90?= Date: Wed, 8 Aug 2018 14:07:28 +0900 Subject: [PATCH] [neurun] Graph : Introduce Operation Index (#2204) Introduce `neurun::graph::operation::Index` which is an alias of `neurun::graph::Index`. Note that, with the additional template parameter `DummyTag`, aliased types are treated as different types(strong typedef). Signed-off-by: Hanjoung Lee --- runtimes/neurun/src/graph/operation/Index.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 runtimes/neurun/src/graph/operation/Index.h diff --git a/runtimes/neurun/src/graph/operation/Index.h b/runtimes/neurun/src/graph/operation/Index.h new file mode 100644 index 0000000..ea16673 --- /dev/null +++ b/runtimes/neurun/src/graph/operation/Index.h @@ -0,0 +1,19 @@ +#ifndef __NEURUN_GRAPH_OPERATION_INDEX_H__ +#define __NEURUN_GRAPH_OPERATION_INDEX_H__ + +#include "graph/Index.h" + +namespace neurun +{ +namespace graph +{ +namespace operation +{ + +using Index = ::neurun::graph::Index; + +} // namespace operation +} // namespace graph +} // namespace neurun + +#endif // __NEURUN_GRAPH_OPERATION_INDEX_H__ -- 2.7.4