From f33484f48fa87f70f3368289bcfc3e64349a718f Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Mon, 29 Jul 2019 12:40:59 +0100 Subject: COMPMID-2336: Guard quint8 gemm files for aarch64 only. gemm_quint8 is only supported for 64-bit thus guarding to avoid any build related issues. Change-Id: Id8784dbacc467780318bd340f895a5abbd383182 Signed-off-by: Georgios Pinitas Reviewed-on: https://review.mlplatform.org/c/1638 Reviewed-by: Pablo Marquez Comments-Addressed: Arm Jenkins Tested-by: Arm Jenkins --- src/core/NEON/kernels/arm_gemm/gemm_quint8.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/core/NEON/kernels/arm_gemm/gemm_quint8.cpp') diff --git a/src/core/NEON/kernels/arm_gemm/gemm_quint8.cpp b/src/core/NEON/kernels/arm_gemm/gemm_quint8.cpp index 2c4af7a2b3..a402332552 100644 --- a/src/core/NEON/kernels/arm_gemm/gemm_quint8.cpp +++ b/src/core/NEON/kernels/arm_gemm/gemm_quint8.cpp @@ -21,6 +21,8 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ +#ifdef __aarch64__ + #include "arm_gemm.hpp" #include "kernels/a64_hybrid_u8u32_dot_16x4.hpp" @@ -99,3 +101,5 @@ template KernelDescription get_gemm_method template std::vector get_compatible_kernels(const GemmArgs &args, const ARequantizeLayer32 &os); } // namespace arm_gemm + +#endif // __aarch64__ -- cgit v1.2.1