From b7cdca09c4ca250885a96478845ae2b5539479ba Mon Sep 17 00:00:00 2001 From: jsteube Date: Sat, 13 Apr 2019 13:46:55 +0200 Subject: [PATCH] OpenCL Runtime: Workaround JiT compiler error on ROCM 2.3 driver if the 'inline' keyword is used in function declaration --- OpenCL/inc_vendor.h | 4 ---- docs/changes.txt | 1 + 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/OpenCL/inc_vendor.h b/OpenCL/inc_vendor.h index e243ec613..fc4f07f88 100644 --- a/OpenCL/inc_vendor.h +++ b/OpenCL/inc_vendor.h @@ -85,11 +85,7 @@ #if defined IS_CPU #define DECLSPEC inline #elif defined IS_GPU -#if defined IS_AMD -#define DECLSPEC inline -#else #define DECLSPEC -#endif #else #define DECLSPEC #endif diff --git a/docs/changes.txt b/docs/changes.txt index f00e7935a..f7cc50105 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -55,6 +55,7 @@ - OpenCL Runtime: Not using amd_bytealign (amd_bitalign is fine) on AMDGPU driver drastically reduces JiT segfaults - OpenCL Runtime: Update unstable mode warnings for Apple and AMDGPU drivers - OpenCL Runtime: Workaround JiT compiler error on AMDGPU driver compiling WPA-EAPOL-PBKDF2 OpenCL kernel +- OpenCL Runtime: Workaround JiT compiler error on ROCM 2.3 driver if the 'inline' keyword is used in function declaration - Tuning Database: Updated hashcat.hctune with new models and refreshed vector width values - WPA/WPA2 cracking: In the potfile, replace password with PMK in order to detect already cracked networks across all WPA modes