aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRamy Elgammal <ramy.elgammal@arm.com>2024-05-17 11:26:35 +0100
committerMichael Kozlov <michael.kozlov@arm.com>2024-05-17 17:01:28 +0100
commit602166d3ab283459a288ed34dd7ef5eda32f3152 (patch)
tree1f036a3a64ce8b3317092dd86599dd69d8ade0dc
parent44dbe61323243994ba6523c566781161c402f75f (diff)
downloadComputeLibrary-branches/arm_compute_24_05.tar.gz
Fix linking error to fp16_run_dequantization_core()branches/arm_compute_24_05
Resolves: COMPMID-7063 Signed-off-by: Ramy Elgammal <ramy.elgammal@arm.com> Change-Id: Ife4d9f0b2644a649da45544b8789c51c15c9aebf Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/11574 Reviewed-by: Pablo Marquez Tello <pablo.tello@arm.com> Benchmark: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com>
-rw-r--r--src/cpu/kernels/CpuDequantizeKernel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/kernels/CpuDequantizeKernel.cpp b/src/cpu/kernels/CpuDequantizeKernel.cpp
index 6154ad3e3b..5595ace998 100644
--- a/src/cpu/kernels/CpuDequantizeKernel.cpp
+++ b/src/cpu/kernels/CpuDequantizeKernel.cpp
@@ -85,7 +85,7 @@ void CpuDequantizeKernel::configure(const ITensorInfo *src, ITensorInfo *dst)
break;
#ifdef ARM_COMPUTE_ENABLE_FP16
case DataType::F16:
- _func = REGISTER_FP32_NEON(fp16_run_dequantization_core);
+ _func = REGISTER_FP16_NEON(fp16_run_dequantization_core);
break;
#endif /* ARM_COMPUTE_ENABLE_FP16 */
default: