Skip to content

Commit 598e911

Browse files
committed
src: cmake: update condition for ukernel
1 parent 720661e commit 598e911

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/CMakeLists.txt

+4-3
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,11 @@ if(DNNL_EXPERIMENTAL_SPARSE)
8181
endif()
8282

8383
if(DNNL_EXPERIMENTAL_UKERNEL)
84-
if(DNNL_TARGET_ARCH STREQUAL "ARCH_GENERIC")
85-
message(FATAL_ERROR "ukernel API does not support generic architecture.")
84+
if(DNNL_TARGET_ARCH STREQUAL "X64" OR DNNL_TARGET_ARCH STREQUAL "AARCH64")
85+
message(STATUS "Experimental functionality for ukernels is enabled")
86+
else()
87+
message(FATAL_ERROR "ukernel API isn't supported for ${DNNL_TARGET_ARCH}.")
8688
endif()
87-
message(STATUS "Experimental functionality for ukernels is enabled")
8889
endif()
8990

9091
if(DNNL_EXPERIMENTAL_PROFILING)

0 commit comments

Comments
 (0)