- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
I installed Intel oneAPI toolkit over VisualStudio 2019. I displayed the devices present in my machine using the below code.
struct gpu_selector : public cl::sycl::device_selector
{
int operator()(const cl::sycl::device& d) const override
{
if (d.is_gpu())
{
std::cout<< "gpu Available: " << d.get_info<cl::sycl::info::device::name>() << "\n";
return 1;
}
else
{
std::cout<< "cpu Available: "<< d.get_info<cl::sycl::info::device::name>()<< "\n";
return -1;
}
}
};
I got the following output:
cpu Available: Intel(R) FPGA Emulation Device
cpu Available: Intel(R) Core(TM) i7-8850H CPU @ 2.60GHz
gpu Available: Intel(R) UHD Graphics 630
gpu Available: Intel(R) Gen9
cpu Available: SYCL host device
As you can see it does not include NVIDIA gpu present in my system
In my Device Manager, I can see that NVIDIA Quadro P2000 is installed.
Is it possible to use DPC++ to target NVIDIA GPU's? If so what is the procedure?
Regards,
Jackson
- Tags:
- General Support
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Jackson,
Currently, Intel OneAPI is not supporting NVIDIA GPU.
Please let us know if you face any related issues.
Warm Regards,
Abhishek
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thank you for clarifying.
Regards,
Jackson
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Jackson,
Thank you for your confirmation, can we close this thread?
You can always post a new thread if you have any issues.
Warm Regards,
Abhishek.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thanks. The thread can be closed
Regards,
Jackson
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thank you, Jackson.
We are closing this issue. Please connect with us if you face any problem while using the OneAPI-base-toolkit.
Stay Healthy Stay Safe!!
-Abhishek

- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page