Skip to content

Commit 602d79f

Browse files
committed
tweak tests
1 parent f613b29 commit 602d79f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/benchmarks/test_e2e.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@
3131
layouts: tuple[Layout, ...] = (
3232
# No shards, just 1000 chunks
3333
Layout(shape=(1_000_000,), chunks=(1000,), shards=None),
34-
# 1:1 chunk:shard shape, should test overhead of sharding
34+
# 1:1 chunk:shard shape, should neasure overhead of sharding
3535
Layout(shape=(1_000_000,), chunks=(1000,), shards=(1000,)),
36-
# Sharding with 100 chunks per shard
37-
Layout(shape=(1000 * 100_000,), chunks=(100_000,), shards=(100 * 100_000,)),
36+
# One shard with all the chunks, should measure overhead of handling inner shard chunks
37+
Layout(shape=(1_000_000,), chunks=(100,), shards=(10000 * 100,)),
3838
)
3939

4040

0 commit comments

Comments
 (0)