From 53f53fe01445d265834102dec991efe9ab92b1d1 Mon Sep 17 00:00:00 2001 From: jsteube Date: Thu, 17 Aug 2017 12:16:49 +0200 Subject: [PATCH] Reduced number of required registers in SIP based on maximum possible esalt length --- OpenCL/m11400_a3.cl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OpenCL/m11400_a3.cl b/OpenCL/m11400_a3.cl index cace5a474..f1ce2fc23 100644 --- a/OpenCL/m11400_a3.cl +++ b/OpenCL/m11400_a3.cl @@ -73,7 +73,7 @@ __kernel void m11400_mxx (__global pw_t *pws, __global const kernel_rule_t *rule const u32 esalt_lenv = ceil ((float) esalt_len / 4); - u32x esalt_buf[64] = { 0 }; + u32x esalt_buf[48] = { 0 }; for (int idx = 0; idx < esalt_lenv; idx++) { @@ -209,7 +209,7 @@ __kernel void m11400_sxx (__global pw_t *pws, __global const kernel_rule_t *rule const u32 esalt_lenv = ceil ((float) esalt_len / 4); - u32x esalt_buf[64] = { 0 }; + u32x esalt_buf[48] = { 0 }; for (int idx = 0; idx < esalt_lenv; idx++) {