aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/CL/functions/CLCast.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/CL/functions/CLCast.cpp')
-rw-r--r--src/runtime/CL/functions/CLCast.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/runtime/CL/functions/CLCast.cpp b/src/runtime/CL/functions/CLCast.cpp
index f9403afcb8..10f7cc2065 100644
--- a/src/runtime/CL/functions/CLCast.cpp
+++ b/src/runtime/CL/functions/CLCast.cpp
@@ -29,6 +29,8 @@
#include "src/core/CL/ICLKernel.h"
#include "src/gpu/cl/operators/ClCast.h"
+#include "src/common/utils/Log.h"
+
#include <utility>
namespace arm_compute
@@ -56,6 +58,7 @@ void CLCast::configure(const ICLTensor *input, ICLTensor *output, ConvertPolicy
void CLCast::configure(const CLCompileContext &compile_context, const ICLTensor *input, ICLTensor *output, ConvertPolicy policy)
{
ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
+ ARM_COMPUTE_LOG_PARAMS(input, output, policy);
_impl->src = input;
_impl->dst = output;