Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for order, shape and chunk selection #4

Open
bnlawrence opened this issue Sep 14, 2023 · 0 comments
Open

Support for order, shape and chunk selection #4

bnlawrence opened this issue Sep 14, 2023 · 0 comments

Comments

@bnlawrence
Copy link

We need to be able to support

  • differing order of bytes on disk
  • slicing into chunks so we can do active storage on slices distributed across chunks.

The latter problem is encapsulated by imagining that an array X(10,10,10) is distributed across arbitrary hypercubes. How would we identify extract just the first row (ie X(0,,))? To do that the storage has to be given the shape (10,10,10) and the chunk selection (0,**).

This requires implementation in storage of either a buffer before application of reduction, or a reduction method that can handle streaming. The low hung fruit here would be to use a buffer.

An issue for the C-coders, is what will a Python description of shape and chunk selection look like by the time they see them? To answer that we have another issue.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant