Imported Upstream version 1.25.0
[platform/core/ml/nnfw.git] / onert-micro / luci-interpreter / pal / common / PALAbs.h
@@ -1,6 +1,5 @@
 /*
- * Copyright (c) 2021 Samsung Electronics Co., Ltd. All Rights Reserved
- * Copyright 2019 The TensorFlow Authors. All Rights Reserved.
+ * Copyright (c) 2023 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.
  * limitations under the License.
  */
 
-#ifndef LUCI_INTERPRETER_PAL_ELU_H
-#define LUCI_INTERPRETER_PAL_ELU_H
+#ifndef LUCI_INTERPRETER_PAL_ABS_H
+#define LUCI_INTERPRETER_PAL_ABS_H
 
-#include <tensorflow/lite/kernels/internal/reference/elu.h>
+#include <cmath>
 
 namespace luci_interpreter_pal
 {
 
-static inline void Elu(const tflite::RuntimeShape &input_shape, const float *input_data,
-                       const tflite::RuntimeShape &output_shape, float *output_data)
+inline void Abs(const int flat_size, const float *input_data, float *output_data)
 {
-  tflite::reference_ops::Elu(input_shape, input_data, output_shape, output_data);
+  for (int i = 0; i < flat_size; ++i)
+  {
+    output_data[i] = std::abs(input_data[i]);
+  }
 }
 
 } // namespace luci_interpreter_pal
 
-#endif // LUCI_INTERPRETER_PAL_ELU_H
+#endif // LUCI_INTERPRETER_PAL_ABS_H