aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorGian Marco Iodice <gianmarco.iodice@arm.com>2021-08-24 11:58:25 +0100
committerGian Marco Iodice <gianmarco.iodice@arm.com>2021-08-24 12:57:26 +0000
commit3cfd3290936033f9d97133a1cb7f33f5ad5cd7f1 (patch)
tree8a78b0474e17b41613e2ea3d519d6d2f96671658 /examples
parent9c67d3883adaa8a65e3567579cf99937deaab21a (diff)
downloadComputeLibrary-3cfd3290936033f9d97133a1cb7f33f5ad5cd7f1.tar.gz
Fix cl_gemm_reshaped.cpp example
- We were not calling the gemm kernel Resolves COMPMID-4784 Change-Id: Iaa8b92ac0e69cfb4a4573be03501a3a227f0e6d3 Signed-off-by: Gian Marco Iodice <gianmarco.iodice@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/6160 Reviewed-by: Michele Di Giorgio <michele.digiorgio@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'examples')
-rw-r--r--examples/gemm_tuner/cl_gemm_reshaped.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/gemm_tuner/cl_gemm_reshaped.cpp b/examples/gemm_tuner/cl_gemm_reshaped.cpp
index e6caeec873..08d46feb5f 100644
--- a/examples/gemm_tuner/cl_gemm_reshaped.cpp
+++ b/examples/gemm_tuner/cl_gemm_reshaped.cpp
@@ -318,7 +318,7 @@ public:
{ ACL_SRC_2, &bias },
{ ACL_DST, &dst }
});
- reshape_lhs.run(gemm_pack);
+ gemm.run(gemm_pack);
// Make sure all the OpenCL jobs are done executing:
CLScheduler::get().sync();