aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/CL/gemm/CLGEMMDefaultTypeValhall.h
diff options
context:
space:
mode:
authorGian Marco Iodice <gianmarco.iodice@arm.com>2021-04-12 17:34:33 +0100
committerGian Marco Iodice <gianmarco.iodice@arm.com>2021-04-16 11:49:52 +0000
commit379549191246f7742d8175edd88d8cff8de3feda (patch)
treef7fb4586307c56f4c13375ec02c03e73049aadbd /src/runtime/CL/gemm/CLGEMMDefaultTypeValhall.h
parentebbb6f9e2735f903a4cb75c23ab7c80797079c25 (diff)
downloadComputeLibrary-379549191246f7742d8175edd88d8cff8de3feda.tar.gz
Add GEMM heuristic for Mali-G78
- Replace std::map with a basic container with std::array Change-Id: I76f53ca61676ca0e5136ce61a3f3adb10e22b4c3 Signed-off-by: Gian Marco Iodice <gianmarco.iodice@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/5441 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 'src/runtime/CL/gemm/CLGEMMDefaultTypeValhall.h')
-rw-r--r--src/runtime/CL/gemm/CLGEMMDefaultTypeValhall.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/runtime/CL/gemm/CLGEMMDefaultTypeValhall.h b/src/runtime/CL/gemm/CLGEMMDefaultTypeValhall.h
index 2fae838cc3..c88fbcf557 100644
--- a/src/runtime/CL/gemm/CLGEMMDefaultTypeValhall.h
+++ b/src/runtime/CL/gemm/CLGEMMDefaultTypeValhall.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2020 Arm Limited.
+ * Copyright (c) 2020-2021 Arm Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -48,6 +48,8 @@ private:
CLGEMMKernelType default_f16(unsigned int m, unsigned int n, unsigned int k, unsigned int b, bool is_rhs_constant);
CLGEMMKernelType default_q8(unsigned int m, unsigned int n, unsigned int k, unsigned int b, bool is_rhs_constant);
CLGEMMKernelType g77_f16(unsigned int m, unsigned int n, unsigned int k, unsigned int b, bool is_rhs_constant);
+ CLGEMMKernelType g78_f32(unsigned int m, unsigned int n, unsigned int k, unsigned int b, bool is_rhs_constant);
+ CLGEMMKernelType g78_f16(unsigned int m, unsigned int n, unsigned int k, unsigned int b, bool is_rhs_constant);
};
} // namespace cl_gemm
} // namespace arm_compute