Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

CUDA or same something that can be available to intel graphic card?

Tags:

cuda

gpgpu

I want to learn GPGPU and CUDA programming. But I know that only Nvidia card support it. My laptop has an Intel HD Graphic Card. So I need to search if it is possible to do GPGPU or something like that with Intel graphic card. Thanks for any information.

like image 917
HongAnTC AnAn Avatar asked Dec 22 '22 01:12

HongAnTC AnAn


1 Answers

To develop in CUDA your options are:

  • Use an NVIDIA GPU - all NVIDIA server, desktop and laptop GPUs support CUDA since around 2006, since your laptop does not have one you could try using one remotely.
  • Use PGI CUDA x86, not free but does what you want.
  • Use gpuocelot to execute the PTX on the CPU, that's an open-source project in development so YMMV.
like image 128
Tom Avatar answered Dec 29 '22 11:12

Tom