aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/NEON/functions/NEGEMMLowpMatrixMultiplyCore.cpp
diff options
context:
space:
mode:
authorAnthony Barbier <anthony.barbier@arm.com>2017-12-08 16:46:29 +0000
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:42:33 +0000
commitbd5900f4a18f7d5c48276a7ff25b4a1766376d69 (patch)
tree13f78a66482aa67b130b67549984d3319b3c3ff9 /src/runtime/NEON/functions/NEGEMMLowpMatrixMultiplyCore.cpp
parent4708e02500735dcc25d5877fb74df70e49f3523e (diff)
downloadComputeLibrary-bd5900f4a18f7d5c48276a7ff25b4a1766376d69.tar.gz
COMPMID-556 Fixed validate for Dot product MatrixMultiplyCore
Change-Id: I5432b58e944b0bf75372de6d990600f38402009d Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/112558 Reviewed-by: Pablo Tello <pablo.tello@arm.com> Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com> Tested-by: BSG Visual Compute Jenkins server to access repositories on http://mpd-gerrit.cambridge.arm.com <bsgcomp@arm.com>
Diffstat (limited to 'src/runtime/NEON/functions/NEGEMMLowpMatrixMultiplyCore.cpp')
-rw-r--r--src/runtime/NEON/functions/NEGEMMLowpMatrixMultiplyCore.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/NEON/functions/NEGEMMLowpMatrixMultiplyCore.cpp b/src/runtime/NEON/functions/NEGEMMLowpMatrixMultiplyCore.cpp
index bee3831353..50aa5b6d11 100644
--- a/src/runtime/NEON/functions/NEGEMMLowpMatrixMultiplyCore.cpp
+++ b/src/runtime/NEON/functions/NEGEMMLowpMatrixMultiplyCore.cpp
@@ -226,7 +226,7 @@ Status NEGEMMLowpMatrixMultiplyCore::validate(const ITensorInfo *a, const ITenso
if(cpu_has_dotprod != 0)
{
// Validate matrix multiply kernel
- ARM_COMPUTE_RETURN_ERROR_ON(NEGEMMLowpAArch64V8P4Kernel::validate(a, b, output));
+ ARM_COMPUTE_RETURN_ON_ERROR(NEGEMMLowpAArch64V8P4Kernel::validate(a, b, output));
}
else
#endif /* ARM_COMPUTE_AARCH64_V8_2 */