aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/CPP/functions/CPPNonMaximumSuppression.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/CPP/functions/CPPNonMaximumSuppression.cpp')
-rw-r--r--src/runtime/CPP/functions/CPPNonMaximumSuppression.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/runtime/CPP/functions/CPPNonMaximumSuppression.cpp b/src/runtime/CPP/functions/CPPNonMaximumSuppression.cpp
index d0d0b1e98b..6d01b127c0 100644
--- a/src/runtime/CPP/functions/CPPNonMaximumSuppression.cpp
+++ b/src/runtime/CPP/functions/CPPNonMaximumSuppression.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2019-2020 Arm Limited.
+ * Copyright (c) 2019-2021 Arm Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -25,12 +25,16 @@
#include "arm_compute/core/CPP/kernels/CPPNonMaximumSuppressionKernel.h"
+#include "src/common/utils/Log.h"
+
namespace arm_compute
{
void CPPNonMaximumSuppression::configure(
const ITensor *bboxes, const ITensor *scores, ITensor *indices, unsigned int max_output_size,
const float score_threshold, const float nms_threshold)
{
+ ARM_COMPUTE_LOG_PARAMS(bboxes, scores, indices, max_output_size, score_threshold, nms_threshold);
+
auto k = std::make_unique<CPPNonMaximumSuppressionKernel>();
k->configure(bboxes, scores, indices, max_output_size, score_threshold, nms_threshold);
_kernel = std::move(k);