Detect CUDA 2.1 properly.

This commit is contained in:
castano 2009-01-17 03:21:24 +00:00
parent 093d0a8afa
commit 846536b8e0

View File

@ -91,7 +91,7 @@ static bool isCudaDriverAvailable(uint version)
if (version >= 2010)
{
void * address = nvcuda.bindSymbol("cuLoadDataEx");
void * address = nvcuda.bindSymbol("cuModuleLoadDataEx");
if (address == NULL) return false;
}