Skip to content

Commit

Permalink
Bench with non-pow-2 values
Browse files Browse the repository at this point in the history
  • Loading branch information
eduherminio committed Aug 16, 2023
1 parent 949f502 commit 5a518fd
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/Lynx.Benchmark/TranspositionTableIndex.cs
Original file line number Diff line number Diff line change
Expand Up @@ -132,16 +132,16 @@ public class TranspositionTableIndex : BaseBenchmark
{
public static IEnumerable<int> Data => new int[]
{
2 * 1024 * 1024,
4 * 1024 * 1024,
8 * 1024 * 1024,
16 * 1024 * 1024,
32 * 1024 * 1024,
64 * 1024 * 1024,
128 * 1024 * 1024,
256 * 1024 * 1024,
512 * 1024 * 1024,
1024 * 1024 * 1024
3 * 1024 * 1024,
5 * 1024 * 1024,
9 * 1024 * 1024,
17 * 1024 * 1024,
33 * 1024 * 1024,
65 * 1024 * 1024,
129 * 1024 * 1024,
257 * 1024 * 1024,
513 * 1024 * 1024,
1025 * 1024 * 1024
};

[Benchmark(Baseline = true)]
Expand Down

0 comments on commit 5a518fd

Please sign in to comment.