mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-26 01:50:10 +00:00
Fix missing barrier in -m 8500
This commit is contained in:
parent
0a676b549f
commit
24a2fb01aa
@ -559,6 +559,8 @@ __kernel void m08500_mxx (__global pw_t *pws, __global const kernel_rule_t *rule
|
||||
s_skb[7][i] = c_skb[7][i];
|
||||
}
|
||||
|
||||
barrier (CLK_LOCAL_MEM_FENCE);
|
||||
|
||||
if (gid >= gid_max) return;
|
||||
|
||||
/**
|
||||
|
@ -557,6 +557,8 @@ __kernel void m08500_mxx (__global pw_t *pws, __global const kernel_rule_t *rule
|
||||
s_skb[7][i] = c_skb[7][i];
|
||||
}
|
||||
|
||||
barrier (CLK_LOCAL_MEM_FENCE);
|
||||
|
||||
if (gid >= gid_max) return;
|
||||
|
||||
/**
|
||||
@ -711,6 +713,8 @@ __kernel void m08500_sxx (__global pw_t *pws, __global const kernel_rule_t *rule
|
||||
s_skb[7][i] = c_skb[7][i];
|
||||
}
|
||||
|
||||
barrier (CLK_LOCAL_MEM_FENCE);
|
||||
|
||||
if (gid >= gid_max) return;
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user