From e34d9921c3e8420f924cd6c9837e63aa9945aff3 Mon Sep 17 00:00:00 2001 From: Ryo Suzuki Date: Tue, 19 Nov 2024 20:13:33 +0000 Subject: [PATCH] test: aarch64: Fix unimplemented error when --cpu-isa-hints=prefer_ymm (#2208) --- src/cpu/platform.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/cpu/platform.cpp b/src/cpu/platform.cpp index f372543ccb7..8dbbeffa56b 100644 --- a/src/cpu/platform.cpp +++ b/src/cpu/platform.cpp @@ -82,6 +82,8 @@ status_t set_max_cpu_isa(dnnl_cpu_isa_t isa) { status_t set_cpu_isa_hints(dnnl_cpu_isa_hints_t isa_hints) { #if DNNL_X64 return x64::set_cpu_isa_hints(isa_hints); +#elif DNNL_AARCH64 + return status::success; #else return status::unimplemented; #endif