summaryrefslogtreecommitdiff
path: root/runtimes/neurun/src/compiler/operand/Context.cc
diff options
context:
space:
mode:
Diffstat (limited to 'runtimes/neurun/src/compiler/operand/Context.cc')
-rw-r--r--runtimes/neurun/src/compiler/operand/Context.cc47
1 files changed, 47 insertions, 0 deletions
diff --git a/runtimes/neurun/src/compiler/operand/Context.cc b/runtimes/neurun/src/compiler/operand/Context.cc
new file mode 100644
index 000000000..3fa529995
--- /dev/null
+++ b/runtimes/neurun/src/compiler/operand/Context.cc
@@ -0,0 +1,47 @@
+/*
+ * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include "Context.h"
+
+#include <cassert>
+
+namespace neurun
+{
+namespace compiler
+{
+namespace operand
+{
+
+Context &Context::set(const model::operand::Index &id,
+ const std::shared_ptr<backend::operand::IObject> &object)
+{
+ // Only one object for an id
+ assert(_objects.find(id.value()) == _objects.end());
+ _objects[id.value()] = object;
+ return (*this);
+}
+
+void Context::iterate(const std::function<void(int, backend::operand::IObject &)> &fn)
+{
+ for (auto &e : _objects)
+ {
+ fn(e.first, *e.second);
+ }
+}
+
+} // namespace operand
+} // namespace compiler
+} // namespace neurun