From 4fbf9087413e429922a2c1c1d719a44ccab95897 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: Thu, 30 Aug 2018 17:12:41 +0900 Subject: [PATCH] [neurun] Move Op.lst to graph/operation (#2530) Move the file Op.lst to graph/operation from internal/op. Now we no longer have any files in internal/op. Signed-off-by: Hanjoung Lee --- runtimes/neurun/src/codegen/BackendResolver.h | 4 ++-- runtimes/neurun/src/{internal/op => graph/operation}/Op.lst | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename runtimes/neurun/src/{internal/op => graph/operation}/Op.lst (100%) diff --git a/runtimes/neurun/src/codegen/BackendResolver.h b/runtimes/neurun/src/codegen/BackendResolver.h index 73693c3..8023efa 100644 --- a/runtimes/neurun/src/codegen/BackendResolver.h +++ b/runtimes/neurun/src/codegen/BackendResolver.h @@ -31,7 +31,7 @@ public: auto backend = _backend_manager.get(backend_all_str); \ _gen_map[typeid(graph::operation::InternalName::Node)] = backend; \ } -#include "internal/op/Op.lst" +#include "graph/operation/Op.lst" #undef OP } else @@ -45,7 +45,7 @@ public: _gen_map[typeid(graph::operation::InternalName::Node)] = backend; \ } -#include "internal/op/Op.lst" +#include "graph/operation/Op.lst" #undef OP } } diff --git a/runtimes/neurun/src/internal/op/Op.lst b/runtimes/neurun/src/graph/operation/Op.lst similarity index 100% rename from runtimes/neurun/src/internal/op/Op.lst rename to runtimes/neurun/src/graph/operation/Op.lst -- 2.7.4