Intel® oneAPI Base Toolkit
Support for the core tools and libraries within the base toolkit that are used to build and deploy high-performance data-centric applications.
419 Discussions

DPC++ not able to detect NVIDIA GPU installed

Tholath__Jackson
Beginner
1,448 Views

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

0 Kudos
5 Replies
AbhishekD_Intel
Moderator
1,448 Views

Hi Jackson,

Currently, Intel OneAPI is not supporting NVIDIA GPU.

Please let us know if you face any related issues.

 

Warm Regards,

Abhishek

0 Kudos
Tholath__Jackson
Beginner
1,448 Views

Thank you for clarifying.

Regards,

Jackson

0 Kudos
AbhishekD_Intel
Moderator
1,448 Views

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.

0 Kudos
Tholath__Jackson
Beginner
1,448 Views

Thanks. The thread can be closed

Regards,

Jackson

0 Kudos
AbhishekD_Intel
Moderator
1,448 Views

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

0 Kudos
Reply