Skip to content

Commit

Permalink
#845 Add updated MapBenchmark
Browse files Browse the repository at this point in the history
  • Loading branch information
theigl committed Jan 21, 2022
1 parent 81023a3 commit 49e8297
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ public void writeRead (WriteBenchmarkState state, Blackhole blackhole) {
@State(Scope.Thread)
public static class AbstractBenchmarkState {
@Param({"object", "identity", "cuckoo", "hash"}) public MapType mapType;
@Param({"integers", "strings", "classes"}) public DataSource dataSource;
@Param({"100", "500", "3000", "5000"}) public int numClasses;
@Param({"51"}) public int initialCapacity;
@Param({"0.7", "0.8"}) public float loadFactor;
@Param({"8192"}) public int maxCapacity;
@Param({"integers", "strings", "classes"}) public DataSource dataSource;
@Param({"100", "500", "3000", "5000"}) public int numClasses;

MapAdapter<Object, Integer> map;
List<Object> data;
Expand Down

0 comments on commit 49e8297

Please sign in to comment.