aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRamy Elgammal <ramy.elgammal@arm.com>2024-05-17 11:26:35 +0100
committerRamy Elgammal <ramy.elgammal@arm.com>2024-05-17 14:11:51 +0000
commit8710385a9feb050f1b5a422ed57df691e8ba078f (patch)
tree6934362d6f9d5aa40abe36dfc3eb61fe454432d3
parentc0e012803c2c9fdb75d00984511e9d015a3c6b96 (diff)
downloadComputeLibrary-8710385a9feb050f1b5a422ed57df691e8ba078f.tar.gz
Fix linking error to fp16_run_dequantization_core()
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: