zarr-developers / zarr-benchmark

Benchmarking the performance of various Zarr implementations, using our perfcapture framework.
MIT License
1 stars 2 forks source link

Implement dataset & workload based on presentation from meeting on Thu 28th Sept. #5

Closed JackKelly closed 1 year ago

JackKelly commented 1 year ago

Data:

image

Workload psuedocode:

# Profile 1
SAMPLES_SLICE = slice(0, 70_000)
TRACES_CHUNK_SIZE = 5000
for i in range(20):
    traces_slice = slice(i * TRACES_CHUNK_SIZE, (i+1) * TRACES_CHUNK_SIZE)
    batch = array.get_orthogonal_selection((traces_slice, SAMPLES_SLICE))