Skip to content

Commit 693393e

Browse files
Removed percentage progression display
1 parent 31108ce commit 693393e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/gpu/chains.cu

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ generateChains(Password *h_passwords, Digest *h_results, int passwordNumber, int
6565
__global__ void ntlmChainKernel(Password *passwords, Digest *digests, int chainLength) {
6666
const unsigned int index = blockIdx.x * blockDim.x + threadIdx.x;
6767
for (int i = 0; i < chainLength; i++) {
68-
if (index == 0) {
68+
/*if (index == 0) {
6969
printf("\r%.2f %%", ((double)i/(double)chainLength) * 100);
70-
}
70+
}*/
7171
ntlm(&passwords[index], &digests[index]);
7272
reduceDigest(i, &digests[index], &passwords[index]);
7373
}

0 commit comments

Comments
 (0)