File tree Expand file tree Collapse file tree 1 file changed +0
-14
lines changed Expand file tree Collapse file tree 1 file changed +0
-14
lines changed Original file line number Diff line number Diff line change @@ -306,25 +306,11 @@ int main(int argc, char **argv)
306
306
{
307
307
sycl_device_queue = sycl::gpu_selector{};
308
308
}
309
- else if (devname == " HOST" )
310
- {
311
- sycl_device_queue = sycl::host_selector{};
312
- }
313
309
else
314
310
{
315
311
std::cout << " QS_DEVICE must be CPU, GPU or HOST" << std::endl;
316
312
std::abort ();
317
313
}
318
-
319
- // DEBUG - REMOVE LATER
320
- if (sycl_device_queue.get_device ().is_cpu ())
321
- std::cout << " is cpu" << std::endl;
322
- if (sycl_device_queue.get_device ().is_gpu ())
323
- std::cout << " is gpu" << std::endl;
324
- if (sycl_device_queue.get_device ().is_host ())
325
- std::cout << " is host" << std::endl;
326
- if (sycl_device_queue.get_device ().is_accelerator ())
327
- std::cout << " is accelerator" << std::endl;
328
314
#endif
329
315
330
316
// mcco stores just about everything.
You can’t perform that action at this time.
0 commit comments