From a1f7851e2f776610019db8725c2963c36b0c85eb Mon Sep 17 00:00:00 2001 From: ramelg01 Date: Wed, 29 Jun 2022 16:28:10 +0100 Subject: Integrate new winograd APIs from MLTech Resolves: COMPMID-5400 Signed-off-by: Ramy Elgammal Change-Id: Ib4428436dd7a6e40d8b2d8a2f8dac1b079154551 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/7894 Reviewed-by: Pablo Marquez Tello Tested-by: Arm Jenkins Comments-Addressed: Arm Jenkins Benchmark: Arm Jenkins --- src/core/CPP/CPPTypes.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/core/CPP') diff --git a/src/core/CPP/CPPTypes.cpp b/src/core/CPP/CPPTypes.cpp index c197932a13..bd5236fcf8 100644 --- a/src/core/CPP/CPPTypes.cpp +++ b/src/core/CPP/CPPTypes.cpp @@ -101,6 +101,16 @@ bool CPUInfo::has_sve2() const return _impl->info.has_sve2(); } +bool CPUInfo::has_sme() const +{ + return false; +} + +bool CPUInfo::has_sme2() const +{ + return false; +} + CPUModel CPUInfo::get_cpu_model() const { return _impl->info.cpu_model(); -- cgit v1.2.1