Skip to content

Commit

Permalink
debug code
Browse files Browse the repository at this point in the history
  • Loading branch information
mbevand committed Nov 11, 2016
1 parent a2e749f commit 243ed56
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions main.c
Original file line number Diff line number Diff line change
Expand Up @@ -365,43 +365,36 @@ void examine_ht(unsigned round, cl_command_queue queue, cl_mem buf_ht)
if (round == 1)
{
show |= has_xi(round, ht, row, 0xf0937683, &star);
show |= (row < 256);
}
if (round == 2)
{
show |= has_xi(round, ht, row, 0x3519d2e0, &star);
show |= (row < 256);
}
if (round == 3)
{
show |= has_xi(round, ht, row, 0xd6950b66, &star);
show |= (row < 256);
}
if (round == 4)
{
show |= has_xi(round, ht, row, 0xa92db6ab, &star);
show |= (row < 256);
}
if (round == 5)
{
show |= has_xi(round, ht, row, 0x2daaa343, &star);
show |= (row < 256);
}
if (round == 6)
{
show |= has_xi(round, ht, row, 0x53b9dd5d, &star);
show |= (row < 256);
}
if (round == 7)
{
show |= has_xi(round, ht, row, 0xb9d374fe, &star);
show |= (row < 256);
}
if (round == 8)
{
show |= has_xi(round, ht, row, 0x005ae381, &star);
show |= (row < 256);
}
// show |= (row < 256);
if (show)
{
debug("row %#x:\n", row);
Expand Down

0 comments on commit 243ed56

Please sign in to comment.