1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-10-10 01:49:01 +00:00
hashcat/include/kernel_vendor.h
2015-12-16 10:00:33 +01:00

35 lines
459 B
C

/**
* Author......: Jens Steube <jens.steube@gmail.com>
* License.....: MIT
*/
#pragma OPENCL EXTENSION cl_khr_byte_addressable_store : enable
/**
* vendor specific
*/
#if VENDOR_ID == 4098
#define IS_AMD
#endif
#if VENDOR_ID == 4318
#define IS_NV
#endif
/**
* AMD specific
*/
#ifdef IS_AMD
#pragma OPENCL EXTENSION cl_amd_media_ops : enable
#pragma OPENCL EXTENSION cl_amd_media_ops2 : enable
#endif
/**
* NV specific
*/
#ifdef IS_NV
#endif