Skip to content
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

Update toolkit driver versions for CUDA 12.4 #3541

Merged
merged 1 commit into from
Apr 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 7 additions & 3 deletions src/backend/cuda/device_manager.cpp
Expand Up @@ -101,6 +101,8 @@ static const int jetsonComputeCapabilities[] = {

// clang-format off
static const cuNVRTCcompute Toolkit2MaxCompute[] = {
{12040, 9, 0, 0},
{12030, 9, 0, 0},
{12020, 9, 0, 0},
{12010, 9, 0, 0},
{12000, 9, 0, 0},
Expand Down Expand Up @@ -140,9 +142,11 @@ struct ComputeCapabilityToStreamingProcessors {
// clang-format off
static const ToolkitDriverVersions
CudaToDriverVersion[] = {
{12020, 525.60f, 527.41f},
{12010, 525.60f, 527.41f},
{12000, 525.60f, 527.41f},
{12040, 525.60f, 528.33f},
{12030, 525.60f, 528.33f},
{12020, 525.60f, 528.33f},
{12010, 525.60f, 528.33f},
{12000, 525.60f, 528.33f},
{11080, 450.80f, 452.39f},
{11070, 450.80f, 452.39f},
{11060, 450.80f, 452.39f},
Expand Down