Skip to content

Commit

Permalink
test: aarch64: Fix unimplemented error when --cpu-isa-hints=prefer_ymm (
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryo-not-rio authored and mgouicem committed Dec 4, 2024
1 parent 548d5d6 commit e34d992
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/cpu/platform.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e34d992

Please sign in to comment.