We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 328ae97 commit f2a2af4Copy full SHA for f2a2af4
examples/CMakeLists.txt
@@ -54,7 +54,8 @@ endforeach()
54
# In case of SYCL, skip CPU examples that directly work with raw pointers
55
if(DNNL_CPU_SYCL)
56
foreach(f ${sources})
57
- if(${f} MATCHES "cpu_")
+ get_filename_component(fname ${f} NAME)
58
+ if(${fname} MATCHES "cpu_")
59
list(REMOVE_ITEM sources "${f}")
60
endif()
61
endforeach()
0 commit comments