[enco] Introduce Intrinsic Selection (#2553)
author박종현/동작제어Lab(SR)/Staff Engineer/삼성전자 <jh1302.park@samsung.com>
Fri, 7 Dec 2018 07:32:13 +0000 (16:32 +0900)
committerGitHub Enterprise <noreply-CODE@samsung.com>
Fri, 7 Dec 2018 07:32:13 +0000 (16:32 +0900)
This commit introduces the basic implementation of Intrinsic Selection pass.
The current implementation is able to rewrite an "Eval" instruction for
"Depthwise concat over features" as "ANNDepthConcatF" instruction.

Signed-off-by: Jonghyun Park <jh1302.park@samsung.com>
contrib/enco/core/src/Backend.cpp
contrib/enco/core/src/Transforms/IntrinsicSelection.cpp [new file with mode: 0644]
contrib/enco/core/src/Transforms/IntrinsicSelection.h [new file with mode: 0644]

index c0409f2..9881984 100644 (file)
@@ -25,6 +25,7 @@
 #include "Transforms/Duplicate.h"
 #include "Transforms/FeatureUnification.h"
 #include "Transforms/AvgPoolLowering.h"
+#include "Transforms/IntrinsicSelection.h"
 #include "Transforms/DataLayoutConversion.h"
 #include "Transforms/IndirectCopyElimination.h"
 #include "Transforms/IdenticalObjectReduction.h"
@@ -107,6 +108,9 @@ void BackendImpl::compile(coco::Module *m, coco::Data *d)
 
   lower_avgpool(code(sess));
 
+  // Select Intrinsic(API)
+  select_intrinsic(code(sess));
+
   // Insert data ordering if necessary
   convert_data_layout(code(sess));
 
diff --git a/contrib/enco/core/src/Transforms/IntrinsicSelection.cpp b/contrib/enco/core/src/Transforms/IntrinsicSelection.cpp
new file mode 100644 (file)
index 0000000..7bf1c49
--- /dev/null
@@ -0,0 +1,100 @@
+/*
+ * 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 "IntrinsicSelection.h"
+
+#include "coex/IR.h"
+
+namespace
+{
+
+/**
+ * @brief Return a backend-speicific coco (extend) instruction
+ *
+ * @note rewrite(ins) returns nullptr if selection fails
+ */
+coco::Instr *rewrite(coco::Instr *curr)
+{
+  auto m = curr->module();
+  assert(m != nullptr);
+
+  if (auto eval = coco::safe_cast<coco::Eval>(curr))
+  {
+    if (auto concat_f = eval->op()->asConcatF())
+    {
+      auto fst_load = concat_f->left()->asLoad();
+      auto snd_load = concat_f->right()->asLoad();
+
+      if (fst_load && snd_load && (concat_f->axis() == coco::ConcatF::Axis::Depth))
+      {
+        // Here is the pattern of interest
+        //
+        //   %ofm = eval(ConcatF(Depth, Load(%left), Load(%right)))
+        //
+        auto fst_feature = fst_load->object()->asFeature();
+        auto snd_feature = snd_load->object()->asFeature();
+        assert((fst_feature != nullptr) && (snd_feature != nullptr));
+
+        auto out_feature = eval->out()->asFeature();
+        assert(out_feature != nullptr);
+
+        eval->out(nullptr);
+
+        auto depth_concat = m->entity()->instr()->create<ANNDepthConcatF>();
+
+        depth_concat->out(out_feature);
+        depth_concat->fst(fst_feature);
+        depth_concat->snd(snd_feature);
+
+        return depth_concat;
+      }
+
+      return nullptr;
+    }
+  }
+
+  return nullptr;
+}
+
+} // namespace
+
+namespace enco
+{
+
+void select_intrinsic(enco::Code *code)
+{
+  auto m = code->module();
+
+  for (auto blk = m->block()->head(); blk; blk = blk->next())
+  {
+    auto ins = blk->instr()->head();
+
+    while (ins)
+    {
+      if (auto rewritten_ins = rewrite(ins))
+      {
+        rewritten_ins->insertBefore(ins);
+        ins->detach();
+
+        ins = rewritten_ins;
+      }
+
+      ins = ins->next();
+    }
+  }
+}
+
+} // namespace enco
diff --git a/contrib/enco/core/src/Transforms/IntrinsicSelection.h b/contrib/enco/core/src/Transforms/IntrinsicSelection.h
new file mode 100644 (file)
index 0000000..e6e3018
--- /dev/null
@@ -0,0 +1,36 @@
+/*
+ * 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.
+ */
+
+#ifndef __INTRINSIC_SELECTION_H__
+#define __INTRINSIC_SELECTION_H__
+
+#include "Code.h"
+
+namespace enco
+{
+
+/**
+ * @brief Select Intricsic (API) to be used
+ *
+ * This pass is analogue of "Instruction Selection" pass. This "Intrisic Selection" pass
+ * will replace a general coco IR instruction into a backend-specific coco (extended) IR
+ * instruction.
+ */
+void select_intrinsic(enco::Code *);
+
+} // namespace enco
+
+#endif // __INTRINSIC_SELECTION_H__