aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/CPP/functions/CPPPermute.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/CPP/functions/CPPPermute.cpp')
-rw-r--r--src/runtime/CPP/functions/CPPPermute.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/runtime/CPP/functions/CPPPermute.cpp b/src/runtime/CPP/functions/CPPPermute.cpp
index 76fa09f12b..83941f1dc1 100644
--- a/src/runtime/CPP/functions/CPPPermute.cpp
+++ b/src/runtime/CPP/functions/CPPPermute.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2017-2020 Arm Limited.
+ * Copyright (c) 2017-2021 Arm Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -25,10 +25,14 @@
#include "arm_compute/core/CPP/kernels/CPPPermuteKernel.h"
+#include "src/common/utils/Log.h"
+
using namespace arm_compute;
void CPPPermute::configure(const ITensor *input, ITensor *output, const PermutationVector &perm)
{
+ ARM_COMPUTE_LOG_PARAMS(input, output, perm);
+
auto k = std::make_unique<CPPPermuteKernel>();
k->configure(input, output, perm);
_kernel = std::move(k);