Created
August 16, 2012 21:57
-
-
Save cosmo0920/3373969 to your computer and use it in GitHub Desktop.
OpenCLの悲しいマクロ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
早くNVIDIAもOpenCL 1.2対応してほしいものですね!