Skip to content

Instantly share code, notes, and snippets.

@cosmo0920
Created August 16, 2012 21:57
Show Gist options
  • Save cosmo0920/3373969 to your computer and use it in GitHub Desktop.
Save cosmo0920/3373969 to your computer and use it in GitHub Desktop.
OpenCLの悲しいマクロ
#ifdef cl_khr_fp64
#pragma OPENCL EXTENSION cl_khr_fp64 : enable
typedef double tfloat;
#elif defined(cl_amd_fp64)
#pragma OPENCL EXTENSION cl_amd_fp64 : enable
typedef double tfloat;
#else
typedef float tfloat;
#endif
@aokomoriuta
Copy link

早くNVIDIAもOpenCL 1.2対応してほしいものですね!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment