aboutsummaryrefslogtreecommitdiff
path: root/examples/gemm_tuner/cl_gemm_reshaped_rhs_only.cpp
diff options
context:
space:
mode:
authorManuel Bottini <manuel.bottini@arm.com>2021-02-08 13:45:19 +0000
committerManuel Bottini <manuel.bottini@arm.com>2021-02-09 13:46:56 +0000
commit7b4278627ef04fb1fb136fe2a367bb67c97218d1 (patch)
treef0cdf2c6673b20fe079c8ef5bcc77fecc9f25831 /examples/gemm_tuner/cl_gemm_reshaped_rhs_only.cpp
parentbbd8fac8e0cd6a403ddb6262be84f15a25f5cb3e (diff)
downloadComputeLibrary-7b4278627ef04fb1fb136fe2a367bb67c97218d1.tar.gz
Fix Floating Point Exception for cl_gemm_reshaped
Return proper error in the examples when such cases occur Resolves: COMPMID-4237 Change-Id: I864c6f73a629a961774c7ae1cb62c28edcbed379 Signed-off-by: Manuel Bottini <manuel.bottini@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/5028 Reviewed-by: Giorgio Arena <giorgio.arena@arm.com> Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'examples/gemm_tuner/cl_gemm_reshaped_rhs_only.cpp')
-rw-r--r--examples/gemm_tuner/cl_gemm_reshaped_rhs_only.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/examples/gemm_tuner/cl_gemm_reshaped_rhs_only.cpp b/examples/gemm_tuner/cl_gemm_reshaped_rhs_only.cpp
index 08bd5d2bd3..10fd2984cf 100644
--- a/examples/gemm_tuner/cl_gemm_reshaped_rhs_only.cpp
+++ b/examples/gemm_tuner/cl_gemm_reshaped_rhs_only.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2019-2020 Arm Limited.
+ * Copyright (c) 2019-2021 Arm Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -227,7 +227,11 @@ public:
if(rhs_info.export_to_cl_image)
{
- examples::gemm_tuner_helpers::update_padding_for_cl_image(rhs_reshaped.info());
+ if(!examples::gemm_tuner_helpers::update_padding_for_cl_image(rhs_reshaped.info()))
+ {
+ std::cerr << "cl_image is not supported on the device, disable export_to_cl_image" << std::endl;
+ return false;
+ }
}
// Validate argments