wbarnha / gr-gmuground

GNU Radio blocks for GMU's ECE/VSE Satellite Communications Ground Station
GNU General Public License v3.0
5 stars 2 forks source link

Add OpenCL Setup #26

Closed wbarnha closed 4 years ago

wbarnha commented 4 years ago

Should Intel OpenCL be automatically installed? If so, simply include the following into setup.sh, taken from here:

add-apt-repository ppa:intel-opencl/intel-opencl
apt-get update
apt-get install intel-opencl-icd
wbarnha commented 4 years ago

It could be automated for Intel CPU's, since cat /proc/cpuinfo | grep 'vendor' returns the vendor of the CPU in use. Applying this to cat /proc/cpuinfo | grep 'vendor' | grep -q 'GenuineIntel' && echo 'Intel Processor Detected' could be viable.

wbarnha commented 4 years ago

All set!