Skip to content

Commit

Permalink
Add large data sizes.
Browse files Browse the repository at this point in the history
  • Loading branch information
tpn committed Feb 17, 2020
1 parent 3b95651 commit 937a589
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions data/generate.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,10 +125,19 @@ def gen_spiked_unique_array(size):
10000000,
)

even_larger_sizes_2 = (
10983181,
13910515,
17829914,
24810562,
)


all_sizes = (
list(normal_sizes) +
list(large_sizes) +
list(even_larger_sizes)
#list(normal_sizes) +
#list(large_sizes) +
#list(even_larger_sizes)
list(even_larger_sizes_2)
)

# Toggle this depending on which sizes you want.
Expand All @@ -138,7 +147,7 @@ def gen_spiked_unique_array(size):
sizes = all_sizes

functions = (
('linear', gen_linear_array),
##('linear', gen_linear_array),
('random', gen_random_unique_array),
#('curved', gen_curved_unique_array),
#('spiked', gen_spiked_unique_array),
Expand Down

0 comments on commit 937a589

Please sign in to comment.