[mir_onnx] Support Sub operator (#7547)
authorСергей Баранников/AI Tools Lab /SRR/Engineer/삼성전자 <s.barannikov@samsung.com>
Wed, 18 Sep 2019 13:32:49 +0000 (16:32 +0300)
committerAlexander Efimov/AI Tools Lab/./Samsung Electronics <a.efimov@samsung.com>
Wed, 18 Sep 2019 13:32:49 +0000 (16:32 +0300)
Add support for `Sub` operator.

Signed-off-by: Sergei Barannikov <s.barannikov@samsung.com>
compiler/mir-onnx-importer/CMakeLists.txt
compiler/mir-onnx-importer/ONNXOpRegistration.h
compiler/mir-onnx-importer/Op/Sub.cpp [new file with mode: 0644]
compiler/mir-onnx-importer/Op/Sub.h [new file with mode: 0644]

index 20b7c34..cb9b7fd 100644 (file)
@@ -75,6 +75,8 @@ set(MIR_ONNX_IMPORTER_SOURCES
         Op/Sigmoid.h
         Op/Softmax.cpp
         Op/Softmax.h
+        Op/Sub.cpp
+        Op/Sub.h
         Op/Sum.cpp
         Op/Sum.h
         Op/Transpose.cpp
index c3eb51f..19922b5 100644 (file)
@@ -42,6 +42,7 @@
 #include "Op/Shape.h"
 #include "Op/Sigmoid.h"
 #include "Op/Softmax.h"
+#include "Op/Sub.h"
 #include "Op/Sum.h"
 #include "Op/Transpose.h"
 #include "Op/Unsqueeze.h"
@@ -78,6 +79,7 @@ inline void registerSupportedOps()
   registry.registerConverter("Shape", stdex::make_unique<ShapeNodeConverter>());
   registry.registerConverter("Sigmoid", stdex::make_unique<SigmoidNodeConverter>());
   registry.registerConverter("Softmax", stdex::make_unique<SoftmaxNodeConverter>());
+  registry.registerConverter("Sub", stdex::make_unique<SubNodeConverter>());
   registry.registerConverter("Sum", stdex::make_unique<SumNodeConverter>());
   registry.registerConverter("Transpose", stdex::make_unique<TransposeNodeConverter>());
   registry.registerConverter("Unsqueeze", stdex::make_unique<UnsqueezeNodeConverter>());
diff --git a/compiler/mir-onnx-importer/Op/Sub.cpp b/compiler/mir-onnx-importer/Op/Sub.cpp
new file mode 100644 (file)
index 0000000..6a15731
--- /dev/null
@@ -0,0 +1,66 @@
+/*
+ * Copyright (c) 2019 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 "Sub.h"
+
+#include "ONNXHelpers.h"
+#include "AttributeHelpers.h"
+
+#include "mir/ops/SubOp.h"
+
+namespace mir_onnx
+{
+
+void SubNodeConverter::convert(const onnx::NodeProto &onnx_node, ConverterContext *context) const
+{
+  const auto opset_version = context->getOpsetVersion(onnx_node.domain());
+  if (opset_version >= 7)
+    convertV7(onnx_node, context);
+  else if (opset_version >= 6)
+    convertV6(onnx_node, context);
+  else if (opset_version >= 1)
+    convertV1(onnx_node, context);
+  else
+    throw std::runtime_error("Not supported opset version on Sub operation!");
+}
+
+void SubNodeConverter::convertV1(const onnx::NodeProto &onnx_node, ConverterContext *context) const
+{
+  // consumed_inputs attribute not used
+  convertV6(onnx_node, context);
+}
+
+void SubNodeConverter::convertV6(const onnx::NodeProto &onnx_node, ConverterContext *context) const
+{
+  // broadcast attribute not used
+  const auto *axis = findAttribute(onnx_node, "axis");
+  if (axis != nullptr)
+    throw std::runtime_error("Not supported axis attribute in Sub operation!");
+
+  convertV7(onnx_node, context);
+}
+
+void SubNodeConverter::convertV7(const onnx::NodeProto &onnx_node, ConverterContext *context) const
+{
+  std::vector<mir::Operation::Output *> inputs = context->getNodeInputs(onnx_node);
+  mir::Graph *graph = context->getGraph();
+
+  auto result = createOp<mir::ops::SubOp>(graph, inputs[0], inputs[1])->getOutput(0);
+
+  context->setNodeOutputs(onnx_node, {result});
+}
+
+} // namespace mir_onnx
diff --git a/compiler/mir-onnx-importer/Op/Sub.h b/compiler/mir-onnx-importer/Op/Sub.h
new file mode 100644 (file)
index 0000000..6546162
--- /dev/null
@@ -0,0 +1,38 @@
+/*
+ * Copyright (c) 2019 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 MIR_ONNX_OP_SUB_H
+#define MIR_ONNX_OP_SUB_H
+
+#include "ONNXNodeConverterRegistry.h"
+
+namespace mir_onnx
+{
+
+class SubNodeConverter : public NodeConverter
+{
+public:
+  void convert(const onnx::NodeProto &onnx_node, ConverterContext *context) const override;
+
+private:
+  void convertV1(const onnx::NodeProto &onnx_node, ConverterContext *context) const;
+  void convertV6(const onnx::NodeProto &onnx_node, ConverterContext *context) const;
+  void convertV7(const onnx::NodeProto &onnx_node, ConverterContext *context) const;
+};
+
+} // namespace mir_onnx
+
+#endif // MIR_ONNX_OP_SUB_H