aboutsummaryrefslogtreecommitdiff
path: root/src/cpu/operators/CpuElementwiseUnary.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/cpu/operators/CpuElementwiseUnary.cpp')
-rw-r--r--src/cpu/operators/CpuElementwiseUnary.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cpu/operators/CpuElementwiseUnary.cpp b/src/cpu/operators/CpuElementwiseUnary.cpp
index 7cf1488c44..7fd14dba7d 100644
--- a/src/cpu/operators/CpuElementwiseUnary.cpp
+++ b/src/cpu/operators/CpuElementwiseUnary.cpp
@@ -22,6 +22,7 @@
* SOFTWARE.
*/
#include "src/cpu/operators/CpuElementwiseUnary.h"
+#include "src/common/utils/Log.h"
#include "src/core/helpers/WindowHelpers.h"
#include "src/cpu/kernels/CpuElementwiseUnaryKernel.h"
@@ -33,6 +34,7 @@ using KernelType = kernels::CpuElementwiseUnaryKernel;
void CpuElementwiseUnary::configure(ElementWiseUnary op, const ITensorInfo &src, ITensorInfo &dst)
{
+ ARM_COMPUTE_LOG_PARAMS(op, src, dst);
auto k = std::make_unique<KernelType>();
k->configure(op, src, dst);
_kernel = std::move(k);