Introducing NotEqual Op in runtime (#3485)
authorSiva Sai Vaddipati/System SW /SRI-Bangalore/Engineer/삼성전자 <siva.sai@samsung.com>
Wed, 7 Nov 2018 08:18:53 +0000 (13:48 +0530)
committer박세희/동작제어Lab(SR)/Principal Engineer/삼성전자 <saehie.park@samsung.com>
Wed, 7 Nov 2018 08:18:53 +0000 (17:18 +0900)
This commit introduces NotEqual op in runtime.
Related issues: #3335, #3337

Signed-off-by: Siva Sai <siva.sai@samsung.com>
runtimes/pure_arm_compute/src/compilation.cc
runtimes/pure_arm_compute/src/internal/op/NodeVisitor.h
runtimes/pure_arm_compute/src/internal/op/NotEqual.cc [new file with mode: 0644]
runtimes/pure_arm_compute/src/internal/op/NotEqual.h [new file with mode: 0644]
runtimes/pure_arm_compute/src/model.cc

index deeb786..2011efd 100644 (file)
@@ -561,6 +561,7 @@ public:
   void visit(const ::internal::tflite::op::TransposeConv::Node &node) override;
   void visit(const ::internal::tflite::op::Pack::Node &node) override;
   void visit(const ::internal::tflite::op::Abs::Node &node) override;
+  void visit(const ::internal::tflite::op::NotEqual::Node &node) override;
 
 private:
   const ::internal::tflite::operand::Set &_ctx;
@@ -4944,6 +4945,12 @@ void Planner::visit(const ::internal::tflite::op::Abs::Node &node)
   throw std::runtime_error("Not supported yet");
 }
 
+void Planner::visit(const ::internal::tflite::op::NotEqual::Node &node)
+{
+  // TODO Implement NotEqual op
+  throw std::runtime_error("Not supported yet");
+}
+
 class AllocationContext final : public IAllocationContext
 {
 public:
index 6f8b234..e29b40f 100644 (file)
@@ -76,6 +76,7 @@
 #include "internal/op/TransposeConv.h"
 #include "internal/op/Pack.h"
 #include "internal/op/Abs.h"
+#include "internal/op/NotEqual.h"
 
 namespace internal
 {
@@ -382,6 +383,12 @@ struct NodeVisitor
   virtual void visit(const TransposeConv::Node &) = 0;
   virtual void visit(const Pack::Node &) = 0;
   virtual void visit(const Abs::Node &) = 0;
+  /**
+   * @brief Visit a NotEqual node
+   * @param[in] node NotEqual node to visit
+   * @return N/A
+   */
+  virtual void visit(const NotEqual::Node &) = 0;
 };
 
 } // namespace op
diff --git a/runtimes/pure_arm_compute/src/internal/op/NotEqual.cc b/runtimes/pure_arm_compute/src/internal/op/NotEqual.cc
new file mode 100644 (file)
index 0000000..2906e21
--- /dev/null
@@ -0,0 +1,65 @@
+/*
+ * 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 "internal/op/NotEqual.h"
+#include "internal/op/NodeVisitor.h"
+
+#include <cassert>
+
+namespace internal
+{
+namespace tflite
+{
+namespace op
+{
+namespace NotEqual
+{
+
+void Node::accept(NodeVisitor &&v) const { v.visit(*this); }
+
+} // namespace NotEqual
+} // namespace op
+} // namespace tflite
+} // namespace internal
+
+namespace internal
+{
+namespace tflite
+{
+namespace op
+{
+namespace NotEqual
+{
+
+Param::Param(uint32_t inputCount, const uint32_t *inputs, uint32_t outputCount,
+             const uint32_t *outputs)
+{
+  assert(inputCount == 2 && outputCount == 1);
+
+  output_index = outputs[0];
+
+  // Each input should be interpreted as follows:
+  //
+  //  0 -> input1 Tensor Index
+  //  1 -> input2 Tensor Index
+  input1_index = inputs[0];
+  input2_index = inputs[1];
+}
+
+} // namespace NotEqual
+} // namespace op
+} // namespace tflite
+} // namespace internal
diff --git a/runtimes/pure_arm_compute/src/internal/op/NotEqual.h b/runtimes/pure_arm_compute/src/internal/op/NotEqual.h
new file mode 100644 (file)
index 0000000..0d61309
--- /dev/null
@@ -0,0 +1,83 @@
+/*
+ * 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 __INTERNAL_OP_NOT_EQUAL_H__
+#define __INTERNAL_OP_NOT_EQUAL_H__
+
+#include "internal/op/Node.h"
+
+#include <cstdint>
+
+namespace internal
+{
+namespace tflite
+{
+namespace op
+{
+namespace NotEqual
+{
+
+struct Param
+{
+  int32_t output_index;
+
+  int32_t input1_index;
+  int32_t input2_index;
+
+  Param() = default;
+  Param(uint32_t inputCount, const uint32_t *inputs, uint32_t outputCount, const uint32_t *outputs);
+};
+
+} // namespace NotEqual
+} // namespace op
+} // namespace tflite
+} // namespace internal
+
+namespace internal
+{
+namespace tflite
+{
+namespace op
+{
+namespace NotEqual
+{
+class Node final : public op::Node
+{
+public:
+  Node(const Param &param) : _param(param)
+  {
+    // DO NOTHING
+  }
+
+public:
+  virtual ~Node() = default;
+
+public:
+  const Param &param(void) const { return _param; }
+
+public:
+  void accept(NodeVisitor &&) const override;
+
+private:
+  const Param _param;
+};
+
+} // namespace NotEqual
+} // namespace op
+} // namespace tflite
+} // namespace internal
+
+#endif // __INTERNAL_OP_NOT_EQUAL_H__
index 74368bb..2f27c67 100644 (file)
@@ -940,6 +940,18 @@ int ANeuralNetworksModel_addOperationEx(ANeuralNetworksModel *model,
 
       break;
     }
+    case ANEURALNETWORKS_NOT_EQUAL_EX:
+    {
+      using internal::tflite::op::NotEqual::Param;
+      using internal::tflite::op::NotEqual::Node;
+
+      // Add 'operations'
+      auto &operations = model->deref().operations();
+
+      operations.emplace_back<Node>(Param{inputCount, inputs, outputCount, outputs});
+
+      break;
+    }
 
     default:
       throw std::runtime_error{"Not supported operation"};