Skip to content

[SYCL][CUDA] Handle the case of not having any CUDA device #1212

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

Merged
merged 1 commit into from
Mar 2, 2020
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
72 changes: 43 additions & 29 deletions sycl/plugins/cuda/pi_cuda.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -528,43 +528,57 @@ pi_result cuda_piPlatformsGet(pi_uint32 num_entries, pi_platform *platforms,
pi_uint32 *num_platforms) {

try {
static constexpr pi_uint32 numPlatforms = 1;
static std::once_flag initFlag;
static pi_uint32 numPlatforms = 1;
static _pi_platform platformId;

if (num_platforms != nullptr) {
*num_platforms = numPlatforms;
if (num_entries == 0 and platforms != nullptr) {
return PI_INVALID_VALUE;
}
if (platforms == nullptr and num_platforms == nullptr) {
return PI_INVALID_VALUE;
}

pi_result err = PI_SUCCESS;

if (platforms != nullptr) {

assert(num_entries != 0);

static std::once_flag initFlag;
static _pi_platform platformId;
std::call_once(
initFlag,
[](pi_result &err) {
err = PI_CHECK_ERROR(cuInit(0));

int numDevices = 0;
err = PI_CHECK_ERROR(cuDeviceGetCount(&numDevices));
std::call_once(
initFlag,
[](pi_result &err) {
if (cuInit(0) != CUDA_SUCCESS) {
numPlatforms = 0;
return;
}
int numDevices = 0;
err = PI_CHECK_ERROR(cuDeviceGetCount(&numDevices));
if (numDevices == 0) {
numPlatforms = 0;
return;
}
try {
platformId.devices_.reserve(numDevices);
try {
for (int i = 0; i < numDevices; ++i) {
CUdevice device;
err = PI_CHECK_ERROR(cuDeviceGet(&device, i));
platformId.devices_.emplace_back(
new _pi_device{device, &platformId});
}
} catch (...) {
// Clear and rethrow to allow retry
platformId.devices_.clear();
throw;
for (int i = 0; i < numDevices; ++i) {
CUdevice device;
err = PI_CHECK_ERROR(cuDeviceGet(&device, i));
platformId.devices_.emplace_back(
new _pi_device{device, &platformId});
}
},
err);
} catch (const std::bad_alloc &) {
// Signal out-of-memory situation
platformId.devices_.clear();
err = PI_OUT_OF_HOST_MEMORY;
} catch (...) {
// Clear and rethrow to allow retry
platformId.devices_.clear();
throw;
}
},
err);

if (num_platforms != nullptr) {
*num_platforms = numPlatforms;
}

if (platforms != nullptr) {
*platforms = &platformId;
}

Expand Down