aboutsummaryrefslogtreecommitdiff
path: root/src/cpu/operators/CpuCast.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/cpu/operators/CpuCast.cpp')
-rw-r--r--src/cpu/operators/CpuCast.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/cpu/operators/CpuCast.cpp b/src/cpu/operators/CpuCast.cpp
index d0980c75b6..1cfd8c1d0e 100644
--- a/src/cpu/operators/CpuCast.cpp
+++ b/src/cpu/operators/CpuCast.cpp
@@ -25,12 +25,15 @@
#include "src/cpu/kernels/CpuCastKernel.h"
+#include "src/common/utils/Log.h"
+
namespace arm_compute
{
namespace cpu
{
void CpuCast::configure(const ITensorInfo *src, ITensorInfo *dst, ConvertPolicy policy)
{
+ ARM_COMPUTE_LOG_PARAMS(src, dst, policy);
auto k = std::make_unique<kernels::CpuCastKernel>();
k->configure(src, dst, policy);
_kernel = std::move(k);