Replies: 2 comments 1 reply
-
Hi @sshleifer. Thanks for asking the question. Could you please post your question in the discussion section of zarr-python? Thanks! |
Beta Was this translation helpful? Give feedback.
1 reply
-
Yeah that seems fine Though if it gets more complex or parallelism issues arise, would take a look at these docs on parallelism and synchronization. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Suppose I created
Would it be safe to have 1 thread write to
arr[12:16]
while another wrote toarr[16:]
?I.e is the last element in its own chunk of size 1?
Why I care
I have each worker holding a strangely shaped 1D array, and am trying to verify the following code for determining the maximum/best chunk size (I assume (possibly incorrectly) that uneven chunk sizes is not supported and that I always want to take the max allowable chunk size even if it's wierd).
Beta Was this translation helpful? Give feedback.
All reactions