aboutsummaryrefslogtreecommitdiff
path: root/arm_compute
diff options
context:
space:
mode:
authorGian Marco Iodice <gianmarco.iodice@arm.com>2020-04-14 12:09:43 +0100
committerGian Marco Iodice <gianmarco.iodice@arm.com>2020-04-14 16:27:09 +0000
commitf6ffe99c96766c31ab0d9075e8be8fcfe23e9d80 (patch)
tree99d1e014ee5b58d88d14aa9ec37b70f42cb41efb /arm_compute
parent12910f27933e269a4496c9342090d91cbaa421b6 (diff)
downloadComputeLibrary-f6ffe99c96766c31ab0d9075e8be8fcfe23e9d80.tar.gz
COMPMID-3349: Fixed performance regression Mali-G71
Change-Id: I2c9cc9ebd7fe6cc6431d25ac795046b0539db616 Signed-off-by: Gian Marco Iodice <gianmarco.iodice@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/3014 Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Michele Di Giorgio <michele.digiorgio@arm.com>
Diffstat (limited to 'arm_compute')
-rw-r--r--arm_compute/runtime/CL/gemm/CLGEMMKernelSelectionBifrost.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/arm_compute/runtime/CL/gemm/CLGEMMKernelSelectionBifrost.h b/arm_compute/runtime/CL/gemm/CLGEMMKernelSelectionBifrost.h
index 94311fb3aa..04906e317f 100644
--- a/arm_compute/runtime/CL/gemm/CLGEMMKernelSelectionBifrost.h
+++ b/arm_compute/runtime/CL/gemm/CLGEMMKernelSelectionBifrost.h
@@ -44,6 +44,8 @@ public:
CLGEMMKernelType select_kernel(const CLGEMMKernelSelectionParams &params) override;
private:
+ CLGEMMKernelType g76_f32(unsigned int m, unsigned int n, unsigned int k, bool is_rhs_constant);
+ CLGEMMKernelType g71_f16(unsigned int m, unsigned int n, unsigned int k, bool is_rhs_constant);
CLGEMMKernelType default_f32(unsigned int m, unsigned int n, unsigned int k, bool is_rhs_constant);
CLGEMMKernelType default_f16(unsigned int m, unsigned int n, unsigned int k, bool is_rhs_constant);
CLGEMMKernelType default_q8(unsigned int m, unsigned int n, unsigned int k, bool is_rhs_constant);