Skip to content

Instantly share code, notes, and snippets.

View CptFoobar's full-sized avatar

Sidhant Sharma CptFoobar

  • Google
  • Bangalore, IN
  • 13:46 (UTC +05:30)
View GitHub Profile
@CptFoobar
CptFoobar / lsgpu.c
Last active June 11, 2018 18:37
Quick command line utility to list OpenCL compatible devices, along with their important attributes. (OpenCL must be previously installed)
/*
* Program to list all attached devices that support OpenCL, along with their key
* attributes.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifdef __APPLE__
#include <OpenCL/opencl.h>
#else