Skip to content

[SYCL][CUDA] Update required min CUDA from 10.1 to 11.5 #10559

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sycl/doc/GetStartedGuide.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ the CUDA backend has Windows support; windows subsystem for
linux (WSL) is not needed to build and run the CUDA backend.

Enabling this flag requires an installation of at least
[CUDA 10.2](https://developer.nvidia.com/cuda-10.2-download-archive) on
[CUDA 11.5](https://developer.nvidia.com/cuda-11-5-0-download-archive) on
the system, refer to
[NVIDIA CUDA Installation Guide for Linux](https://docs.nvidia.com/cuda/cuda-installation-guide-linux/index.html)
or
Expand Down
2 changes: 1 addition & 1 deletion sycl/plugins/cuda/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ message(STATUS "Including the PI API CUDA backend.")
# we only require the CUDA driver API to be used
# CUDA_CUDA_LIBRARY variable defines the path to libcuda.so, the CUDA Driver API library.

find_package(CUDA 10.1 REQUIRED)
find_package(CUDA 11.5 REQUIRED)

# Make imported library global to use it within the project.
add_library(cudadrv SHARED IMPORTED GLOBAL)
Expand Down
2 changes: 1 addition & 1 deletion sycl/tools/sycl-trace/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ add_dependencies(sycl_pi_trace_collector pi-pretty-printers)

if(SYCL_BUILD_PI_CUDA)

find_package(CUDA 10.1 REQUIRED)
find_package(CUDA 11.5 REQUIRED)

target_compile_definitions(cuda_trace_collector
PRIVATE
Expand Down