[locomotiv] Introduce Tanh Operation (#6846)
author남궁석/On-Device Lab(SR)/Engineer/삼성전자 <sk.namkoong@samsung.com>
Fri, 23 Aug 2019 07:56:13 +0000 (16:56 +0900)
committer박세희/On-Device Lab(SR)/Principal Engineer/삼성전자 <saehie.park@samsung.com>
Fri, 23 Aug 2019 07:56:12 +0000 (16:56 +0900)
* [locomotiv] Introduce Tanh Operation

This commit will introduce `Tanh` operation in `locomotiv`

Signed-off-by: Seok NamKoong <sk.namkoong@samsung.com>
* substitute tanh_ew to std::tanh

compiler/locomotiv/src/Node.lst
compiler/locomotiv/src/Node/Tanh.cpp [new file with mode: 0644]
compiler/locomotiv/src/Node/Tanh.test.cpp [new file with mode: 0644]

index 86aae88..02e640c 100644 (file)
@@ -27,5 +27,6 @@ NODE(Push)
 NODE(ReLU)
 NODE(ReLU6)
 NODE(Reshape<loco::ReshapeType::Fixed>)
+NODE(Tanh)
 NODE(TensorConcat)
 NODE(TensorSoftmax)
diff --git a/compiler/locomotiv/src/Node/Tanh.cpp b/compiler/locomotiv/src/Node/Tanh.cpp
new file mode 100644 (file)
index 0000000..9acaf92
--- /dev/null
@@ -0,0 +1,77 @@
+/*
+ * 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 "NodeExecution.h"
+
+#include "NodeDataImpl.h"
+#include "NodeDomain.h"
+#include "Validation.h"
+
+#include <nncc/core/ADT/tensor/Shape.h>
+#include <nncc/core/ADT/tensor/Buffer.h>
+#include <nncc/core/ADT/tensor/Index.h>
+#include <nncc/core/ADT/tensor/IndexEnumerator.h>
+#include <nncc/core/ADT/tensor/LexicalLayout.h>
+
+using nncc::core::ADT::tensor::Index;
+using nncc::core::ADT::tensor::IndexEnumerator;
+using nncc::core::ADT::tensor::LexicalLayout;
+using nncc::core::ADT::tensor::make_buffer;
+
+#include <cassert>
+#include <stdexcept>
+#include <math.h>
+
+namespace locomotiv
+{
+
+void NodeExecution::execute(loco::Tanh *tanh)
+{
+  auto input_data = annot_data(tanh->input());
+
+  validate(input_data, "Input not ready");
+  validate(annot_domain(tanh->input()) != loco::Domain::Unknown, "Input domain of Tanh is Unknown");
+
+  std::unique_ptr<NodeData> tanh_data = nullptr;
+
+  switch (input_data->dtype())
+  {
+    case loco::DataType::FLOAT32:
+    {
+      auto input_bufptr = input_data->as_f32_bufptr();
+      auto tanh_buf = make_buffer<float, LexicalLayout>(*input_data->shape());
+      auto *shape = input_data->shape();
+
+      for (IndexEnumerator e{*shape}; e.valid(); e.advance())
+      {
+        const auto &index = e.current();
+        tanh_buf.at(index) = std::tanh(input_bufptr->at(index));
+      }
+
+      tanh_data = make_data(tanh_buf);
+      break;
+    }
+    default:
+      throw std::runtime_error("NYI for this DataType");
+  }
+
+  assert(tanh_data != nullptr);
+  erase_annot_data(tanh);
+  annot_data(tanh, std::move(tanh_data));
+  annot_domain(tanh, annot_domain(tanh->input()));
+}
+
+} // namespace locomotiv
diff --git a/compiler/locomotiv/src/Node/Tanh.test.cpp b/compiler/locomotiv/src/Node/Tanh.test.cpp
new file mode 100644 (file)
index 0000000..78c3a13
--- /dev/null
@@ -0,0 +1,64 @@
+/*
+ * 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 "NodeExecution.h"
+
+#include "locomotiv/NodeData.h"
+#include "NodeDataImpl.h"
+#include "NodeDomain.h"
+
+#include <nncc/core/ADT/tensor/Shape.h>
+#include <nncc/core/ADT/tensor/Buffer.h>
+#include <nncc/core/ADT/tensor/LexicalLayout.h>
+
+#include <gtest/gtest.h>
+
+using nncc::core::ADT::tensor::Index;
+using nncc::core::ADT::tensor::Shape;
+using nncc::core::ADT::tensor::LexicalLayout;
+using nncc::core::ADT::tensor::make_buffer;
+
+TEST(NodeExecution_Tanh, f32)
+{
+  // Make pull-Tanh graph
+  auto g = loco::make_graph();
+  auto pull = g->nodes()->create<loco::Pull>();
+  pull->dtype(loco::DataType::FLOAT32);
+  pull->shape({3});
+  auto tanh = g->nodes()->create<loco::Tanh>();
+  tanh->input(pull);
+
+  // Make and assign data to pull node
+  auto pull_buf = make_buffer<float, LexicalLayout>(Shape{3});
+  pull_buf.at(Index{0}) = 0.0f;
+  pull_buf.at(Index{1}) = 1.0f;
+  pull_buf.at(Index{2}) = -1.0f;
+  auto pull_data = locomotiv::make_data(pull_buf);
+  locomotiv::annot_data(pull, std::move(pull_data));
+  locomotiv::annot_domain(pull, loco::Domain::Tensor);
+
+  locomotiv::NodeExecution::get().run(tanh);
+
+  auto tanh_data = locomotiv::annot_data(tanh);
+  ASSERT_NE(tanh_data, nullptr);
+  ASSERT_EQ(tanh_data->dtype(), loco::DataType::FLOAT32);
+  ASSERT_EQ(*(tanh_data->shape()), Shape{3});
+  ASSERT_FLOAT_EQ(tanh_data->as_f32_bufptr()->at(Index{0}), 0.0f);
+  ASSERT_FLOAT_EQ(tanh_data->as_f32_bufptr()->at(Index{1}), 0.761594f);
+  ASSERT_FLOAT_EQ(tanh_data->as_f32_bufptr()->at(Index{2}), -0.761594f);
+
+  ASSERT_EQ(locomotiv::annot_domain(tanh), loco::Domain::Tensor);
+}