aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/CL/tuners/BifrostTuner.cpp
diff options
context:
space:
mode:
authorGeorgios Pinitas <georgios.pinitas@arm.com>2020-07-17 12:47:56 +0100
committerGian Marco Iodice <gianmarco.iodice@arm.com>2020-07-20 07:34:56 +0000
commit9c82e014260a997fe784affc7e0545972c3511e5 (patch)
tree404b1ab89ab9b62b9883c182f81b4bf4b53448ad /src/runtime/CL/tuners/BifrostTuner.cpp
parentba2cc1aea6bcd16b3ad81b55be18911af83d2113 (diff)
downloadComputeLibrary-9c82e014260a997fe784affc7e0545972c3511e5.tar.gz
COMPMID-3604: Graph failures during tuning
Update ICLTuner interface to account for the new memory injection interface. Redirect to appropriate kernel execution interface depending on if the kernel supports memory injection or not. Signed-off-by: Georgios Pinitas <georgios.pinitas@arm.com> Change-Id: I8ce29f5c22f1865c9e688d12b65e68ee4486f99c Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/3588 Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Michele Di Giorgio <michele.digiorgio@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'src/runtime/CL/tuners/BifrostTuner.cpp')
-rw-r--r--src/runtime/CL/tuners/BifrostTuner.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/runtime/CL/tuners/BifrostTuner.cpp b/src/runtime/CL/tuners/BifrostTuner.cpp
index 3fecd04455..1797c2ceb1 100644
--- a/src/runtime/CL/tuners/BifrostTuner.cpp
+++ b/src/runtime/CL/tuners/BifrostTuner.cpp
@@ -315,5 +315,10 @@ void BifrostTuner::tune_kernel_dynamic(ICLKernel &kernel)
{
ARM_COMPUTE_UNUSED(kernel);
}
+
+void BifrostTuner::tune_kernel_dynamic(ICLKernel &kernel, const InputTensorMap &inputs, const OutputTensorMap &outputs)
+{
+ ARM_COMPUTE_UNUSED(kernel, inputs, outputs);
+}
} // namespace tuners
} // namespace arm_compute \ No newline at end of file