Soft Backend: capped relu operation (#837)
authorEfimov Alexander/AI Tools Lab/./Samsung Electronics <a.efimov@samsung.com>
Fri, 3 Aug 2018 12:08:57 +0000 (15:08 +0300)
committerSergey Vostokov/AI Tools Lab /SRR/Staff Engineer/삼성전자 <s.vostokov@samsung.com>
Fri, 3 Aug 2018 12:08:57 +0000 (15:08 +0300)
Add implementation of capped relu operation

Signed-off-by: Efimov Alexander <a.efimov@samsung.com>
contrib/nnc/libs/backend/soft/include/cpp_operations.def
contrib/nnc/libs/backend/soft/include/cpp_ops/cpp_capped_relu.def

index 9c9d18f..460e1f3 100644 (file)
@@ -220,7 +220,13 @@ void fullConnect(Tensor &out, const char *params, const Tensor &in)
 
 void cappedRelu(Tensor &out, const char *params, const Tensor &in)
 {
-  // TODO call actual function
+  const float *input = in.getData();
+  Dims<4> input_d = shapeToDims(in.getShape());
+  float cap = deserializeT<float>(params);
+
+  out.reShape(in.getShape());
+
+  CappedRelu(input, input_d, cap, out.getData(), input_d);
 }
 
 void biasAdd(Tensor &out, const char *params, const Tensor &in)
index 8b13789..314ea2b 100644 (file)
@@ -1 +1,25 @@
+/* Copyright 2017 The TensorFlow Authors. 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.
+==============================================================================*/
+
+inline void CappedRelu(const float* input_data, const Dims<4>& input_dims,
+                       float cap, float* output_data, const Dims<4>& output_dims) {
+  const int flat_size = MatchingFlatSize(input_dims, output_dims);
+  for (int i = 0; i < flat_size; ++i) {
+    const float val = input_data[i];
+    const float lower = 0;
+    const float clamped = val > cap ? cap : val < lower ? lower : val;
+    output_data[i] = clamped;
+  }
+}