From beabe3bdf47306d0940ddf2ddf52ada6903a0875 Mon Sep 17 00:00:00 2001 From: Moritz Pflanzer Date: Thu, 31 Aug 2017 14:56:32 +0100 Subject: COMPMID-481: Add AArch64 GEMM Change-Id: I34f94f99cb05f0eabafee13c5e623ee779b72360 Reviewed-on: http://mpd-gerrit.cambridge.arm.com/83741 Tested-by: Kaizen Reviewed-by: Anthony Barbier Reviewed-by: Pablo Tello --- arm_compute/core/CPP/CPPTypes.h | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) (limited to 'arm_compute/core/CPP') diff --git a/arm_compute/core/CPP/CPPTypes.h b/arm_compute/core/CPP/CPPTypes.h index adad00f8c4..cff49db0ac 100644 --- a/arm_compute/core/CPP/CPPTypes.h +++ b/arm_compute/core/CPP/CPPTypes.h @@ -48,11 +48,18 @@ enum class CPUTarget A75_DOT = (A75 | DOT), }; +struct CPUInfo +{ + CPUTarget CPU{ CPUTarget::INTRINSICS }; + int L1_size{ 0 }; + int L2_size{ 0 }; +}; + struct ThreadInfo { - int thread_id{ 0 }; - int num_threads{ 1 }; - CPUTarget cpu{ CPUTarget::INTRINSICS }; + int thread_id{ 0 }; + int num_threads{ 1 }; + CPUInfo cpu_info{}; }; } // namespace arm_compute #endif /* __ARM_COMPUTE_CPP_TYPES_H__ */ -- cgit v1.2.1