File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -43,9 +43,8 @@ if(CXX_COMPILER_IS_DPCPP)
43
43
endif ()
44
44
45
45
# Find SYCL implementation.
46
- set (hipSYCL_MIN_VERSION "0.9.1" )
47
46
if (CELERITY_SYCL_IMPL STREQUAL "hipSYCL" )
48
- find_package (hipSYCL ${hipSYCL_MIN_VERSION} CONFIG REQUIRED )
47
+ find_package (hipSYCL CONFIG REQUIRED )
49
48
elseif (CELERITY_SYCL_IMPL STREQUAL "DPC++" )
50
49
if (NOT CXX_COMPILER_IS_DPCPP )
51
50
message (FATAL_ERROR "CELERITY_SYCL_IMPL set to DPC++, but CXX compiler at ${CMAKE_CXX_COMPILER} is not DPC++" )
57
56
list (APPEND AVAILABLE_SYCL_IMPLS DPC++ )
58
57
endif ()
59
58
60
- find_package (hipSYCL ${hipSYCL_MIN_VERSION} QUIET CONFIG )
59
+ find_package (hipSYCL QUIET CONFIG )
61
60
if (hipSYCL_FOUND )
62
61
message (STATUS "Found hipSYCL: ${hipSYCL_DIR} " )
63
62
list (APPEND AVAILABLE_SYCL_IMPLS hipSYCL )
You can’t perform that action at this time.
0 commit comments