Skip to content

Commit

Permalink
Don't test past pipe 8.
Browse files Browse the repository at this point in the history
  • Loading branch information
rokicki committed Oct 11, 2023
1 parent 5b3661b commit df73a2c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/cpp/test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ void timingtest(puzdef &pd) {
<< flush;
}
prunetable pt(pd, maxmem);
duration();
for (int tt = 0; tt < 2; tt++) {
cout << "Timing moves plus lookup." << endl << flush;
duration();
Expand All @@ -74,7 +75,7 @@ void timingtest(puzdef &pd) {
<< " sum " << sum << endl
<< flush;
}
const int MAXLOOK = 128;
const int MAXLOOK = 8;
ull tgo[MAXLOOK];
for (int look = 2; look <= MAXLOOK; look *= 2) {
int mask = look - 1;
Expand Down

0 comments on commit df73a2c

Please sign in to comment.