1
1

Fix SEGV because missing CUDA initialization.

This commit was SVN r28601.
Этот коммит содержится в:
Rolf vandeVaart 2013-06-07 18:31:36 +00:00
родитель 1230029aa1
Коммит 62ab008017

Просмотреть файл

@ -66,6 +66,11 @@ void mca_cuda_convertor_init(opal_convertor_t* convertor, const void *pUserBuf)
*/
bool opal_cuda_check_bufs(char *dest, char *src)
{
/* Only do the initialization on the first GPU access */
if (!initialized) {
opal_cuda_support_init();
}
if (!opal_cuda_enabled) {
return false;
}