Driver: now ignore CUDA_ERROR_DEINITIALIZED in the destructor of CUDA C++ object.
This should be harmless. ISAAC deinitializes CUDA at the very end, but external libraries may deinitialize it beforehands.
This commit is contained in:
@@ -30,8 +30,7 @@ extern "C"
|
||||
cublasStatus_t cublasDestroy_v2 (cublasHandle_t handle)
|
||||
{
|
||||
delete handle;
|
||||
cublasShutdown();
|
||||
return CUBLAS_STATUS_SUCCESS;
|
||||
return cublasShutdown();
|
||||
}
|
||||
|
||||
cublasStatus cublasInit()
|
||||
|
Reference in New Issue
Block a user