2015-12-04 14:47:52 +00:00
|
|
|
/**
|
2016-09-11 20:20:15 +00:00
|
|
|
* Author......: See docs/credits.txt
|
2015-12-04 14:47:52 +00:00
|
|
|
* License.....: MIT
|
|
|
|
*/
|
|
|
|
|
2019-03-23 21:15:38 +00:00
|
|
|
#ifndef _INC_VENDOR_H
|
|
|
|
#define _INC_VENDOR_H
|
|
|
|
|
2019-03-22 21:27:58 +00:00
|
|
|
#ifdef _CPU_OPENCL_EMU_H
|
|
|
|
#define CONSTANT_AS
|
|
|
|
#define GLOBAL_AS
|
|
|
|
#define LOCAL_AS
|
|
|
|
#define KERNEL_FQ
|
|
|
|
#else
|
|
|
|
#define CONSTANT_AS __constant
|
|
|
|
#define GLOBAL_AS __global
|
|
|
|
#define LOCAL_AS __local
|
|
|
|
#define KERNEL_FQ __kernel
|
|
|
|
#endif
|
|
|
|
|
2019-04-04 18:01:37 +00:00
|
|
|
#ifndef MAYBE_UNUSED
|
|
|
|
#define MAYBE_UNUSED
|
|
|
|
#endif
|
|
|
|
|
2016-05-09 19:32:12 +00:00
|
|
|
/**
|
|
|
|
* device type
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define DEVICE_TYPE_CPU 2
|
|
|
|
#define DEVICE_TYPE_GPU 4
|
|
|
|
#define DEVICE_TYPE_ACCEL 8
|
|
|
|
|
|
|
|
#if DEVICE_TYPE == DEVICE_TYPE_CPU
|
|
|
|
#define IS_CPU
|
|
|
|
#elif DEVICE_TYPE == DEVICE_TYPE_GPU
|
|
|
|
#define IS_GPU
|
|
|
|
#elif DEVICE_TYPE == DEVICE_TYPE_ACCEL
|
|
|
|
#define IS_ACCEL
|
2016-04-20 19:19:15 +00:00
|
|
|
#endif
|
|
|
|
|
2015-12-04 14:47:52 +00:00
|
|
|
/**
|
|
|
|
* vendor specific
|
|
|
|
*/
|
|
|
|
|
2016-05-09 19:32:12 +00:00
|
|
|
#if VENDOR_ID == (1 << 0)
|
2015-12-04 14:47:52 +00:00
|
|
|
#define IS_AMD
|
2016-05-14 17:45:51 +00:00
|
|
|
#elif VENDOR_ID == (1 << 1)
|
|
|
|
#define IS_APPLE
|
|
|
|
#define IS_GENERIC
|
|
|
|
#elif VENDOR_ID == (1 << 2)
|
|
|
|
#define IS_INTEL_BEIGNET
|
|
|
|
#define IS_GENERIC
|
|
|
|
#elif VENDOR_ID == (1 << 3)
|
|
|
|
#define IS_INTEL_SDK
|
|
|
|
#define IS_GENERIC
|
|
|
|
#elif VENDOR_ID == (1 << 4)
|
|
|
|
#define IS_MESA
|
|
|
|
#define IS_GENERIC
|
|
|
|
#elif VENDOR_ID == (1 << 5)
|
2015-12-04 14:47:52 +00:00
|
|
|
#define IS_NV
|
2016-05-14 17:45:51 +00:00
|
|
|
#elif VENDOR_ID == (1 << 6)
|
|
|
|
#define IS_POCL
|
|
|
|
#define IS_GENERIC
|
2016-01-13 16:10:40 +00:00
|
|
|
#else
|
2016-01-07 19:14:34 +00:00
|
|
|
#define IS_GENERIC
|
2016-01-04 12:17:20 +00:00
|
|
|
#endif
|
|
|
|
|
2018-11-20 09:06:34 +00:00
|
|
|
#define LOCAL_MEM_TYPE_LOCAL 1
|
|
|
|
#define LOCAL_MEM_TYPE_GLOBAL 2
|
|
|
|
|
|
|
|
#if LOCAL_MEM_TYPE == LOCAL_MEM_TYPE_LOCAL
|
2018-08-13 10:10:03 +00:00
|
|
|
#define REAL_SHM
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef REAL_SHM
|
2019-03-22 21:27:58 +00:00
|
|
|
#define SHM_TYPE LOCAL_AS
|
2018-08-13 10:10:03 +00:00
|
|
|
#else
|
2019-03-22 21:27:58 +00:00
|
|
|
#define SHM_TYPE CONSTANT_AS
|
2018-08-13 10:10:03 +00:00
|
|
|
#endif
|
|
|
|
|
2018-02-06 18:12:24 +00:00
|
|
|
/**
|
|
|
|
* function declarations can have a large influence depending on the opencl runtime
|
|
|
|
*/
|
|
|
|
|
2018-02-08 08:49:59 +00:00
|
|
|
#if defined IS_CPU
|
2018-02-16 17:56:21 +00:00
|
|
|
#define DECLSPEC inline
|
2018-02-08 08:49:59 +00:00
|
|
|
#elif defined IS_GPU
|
|
|
|
#if defined IS_AMD
|
2018-02-08 08:42:59 +00:00
|
|
|
#define DECLSPEC inline
|
|
|
|
#else
|
2018-02-06 21:05:15 +00:00
|
|
|
#define DECLSPEC
|
2018-02-08 08:42:59 +00:00
|
|
|
#endif
|
2018-02-06 21:05:15 +00:00
|
|
|
#else
|
2018-02-08 08:42:59 +00:00
|
|
|
#define DECLSPEC
|
2018-02-06 21:05:15 +00:00
|
|
|
#endif
|
2018-02-06 18:12:24 +00:00
|
|
|
|
2015-12-04 14:47:52 +00:00
|
|
|
/**
|
|
|
|
* AMD specific
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef IS_AMD
|
2018-07-22 10:20:20 +00:00
|
|
|
#if defined(cl_amd_media_ops)
|
2016-01-04 12:17:20 +00:00
|
|
|
#pragma OPENCL EXTENSION cl_amd_media_ops : enable
|
2018-07-22 10:20:20 +00:00
|
|
|
#endif
|
|
|
|
#if defined(cl_amd_media_ops2)
|
2015-12-04 14:47:52 +00:00
|
|
|
#pragma OPENCL EXTENSION cl_amd_media_ops2 : enable
|
|
|
|
#endif
|
2018-07-22 10:20:20 +00:00
|
|
|
#endif
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2015-12-15 11:04:22 +00:00
|
|
|
/**
|
2016-05-09 19:32:12 +00:00
|
|
|
* Unrolling is generally enabled, for all device types and hash modes
|
|
|
|
* There's a few exception when it's better not to unroll
|
2016-11-13 19:58:28 +00:00
|
|
|
* Some algorithms run into too much register pressure due to loop unrolling
|
2015-12-15 11:04:22 +00:00
|
|
|
*/
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-11-13 19:58:28 +00:00
|
|
|
// generic vendors: those algos have shown that they produce better results on both amd and nv when not unrolled
|
|
|
|
// so we can assume they will produce better results on other vendors as well
|
2016-05-09 19:32:12 +00:00
|
|
|
|
2019-03-03 10:39:18 +00:00
|
|
|
#ifdef NO_UNROLL
|
|
|
|
#undef _unroll
|
|
|
|
#endif
|
2019-03-23 21:15:38 +00:00
|
|
|
|
|
|
|
#endif
|