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

Fix CUDA detection on WSL #847

Merged
merged 3 commits into from
Jul 12, 2024
Merged
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
21 changes: 18 additions & 3 deletions LLama/Native/Load/SystemInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,24 @@ private static int GetCudaMajorVersion()
}
else if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux))
{
// Try the default first
cudaPath = "/usr/local/bin/cuda";
version = GetCudaVersionFromPath(cudaPath);
// List of default cuda paths
string[] defaultCudaPaths =
{
"/usr/local/bin/cuda",
"/usr/local/cuda",
};

// Loop through every default path to find the version
foreach (var path in defaultCudaPaths)
{
// Attempt to get the version from the path
version = GetCudaVersionFromPath(path);

// If a CUDA version is found, break the loop
if (!string.IsNullOrEmpty(version))
break;
}

if (string.IsNullOrEmpty(version))
{
cudaPath = Environment.GetEnvironmentVariable("LD_LIBRARY_PATH");
Expand Down
Loading