提交 e4dee5b3 编写于 作者: R Roman Donchenko 提交者: OpenCV Buildbot

Merge pull request #1780 from ilya-lavrenov:ocl_m_pi

...@@ -45,16 +45,16 @@ ...@@ -45,16 +45,16 @@
// //
#if defined (DOUBLE_SUPPORT) #if defined (DOUBLE_SUPPORT)
#ifdef cl_khr_fp64 #ifdef cl_amd_fp64
#pragma OPENCL EXTENSION cl_khr_fp64:enable
#elif defined (cl_amd_fp64)
#pragma OPENCL EXTENSION cl_amd_fp64:enable #pragma OPENCL EXTENSION cl_amd_fp64:enable
#elif defined (cl_khr_fp64)
#pragma OPENCL EXTENSION cl_khr_fp64:enable
#endif #endif
#define CV_PI 3.1415926535897932384626433832795 #define CV_PI M_PI
#define CV_2PI 2*CV_PI #define CV_2PI (2 * CV_PI)
#else #else
#define CV_PI 3.1415926535897932384626433832795f #define CV_PI M_PI_F
#define CV_2PI 2*CV_PI #define CV_2PI (2 * CV_PI)
#endif #endif
/**************************************phase inradians**************************************/ /**************************************phase inradians**************************************/
......
...@@ -44,10 +44,14 @@ ...@@ -44,10 +44,14 @@
//M*/ //M*/
#ifdef DOUBLE_SUPPORT #ifdef DOUBLE_SUPPORT
#pragma OPENCL EXTENSION cl_khr_fp64:enable #ifdef cl_amd_fp64
#define CV_PI 3.1415926535897932384626433832795 #pragma OPENCL EXTENSION cl_amd_fp64:enable
#elif defined (cl_khr_fp64)
#pragma OPENCL EXTENSION cl_khr_fp64:enable
#endif
#define CV_PI M_PI
#else #else
#define CV_PI 3.1415926535897932384626433832795f #define CV_PI M_PI_F
#endif #endif
///////////////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////////////////
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册