Use aligned prefetch address

Prefetch always form a chache line boundary. It seems
that if prefetch address is not cache line aligned then
performance is adversely impacted.

Hopefully we will resuse that 32 bits of padding for something
useful in the future.

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
Marco Costalba
2009-08-10 09:35:46 +02:00
parent 55c46b2399
commit 60b5da4cc8
2 changed files with 2 additions and 1 deletions

View File

@@ -34,7 +34,7 @@
#endif
// This is the number of TTEntry slots for each position
static const int ClusterSize = 5;
static const int ClusterSize = 4;
// The main transposition table
TranspositionTable TT;