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

Update docs #60

Merged
merged 50 commits into from
Mar 28, 2025
Merged

Update docs #60

merged 50 commits into from
Mar 28, 2025

Conversation

pattonw
Copy link
Collaborator

@pattonw pattonw commented Mar 11, 2025

Docs now build with the github actions.
API and Release docs have been updated.
Tutorial has been added. It now executes as part of the build action ensuring that the tutorial always remains up to date and executable.

pattonw added 30 commits March 10, 2025 11:26
its unclear to me what the sphinx action is doing and why its not picking up the notebook
Copy link
Collaborator

@cmalinmayor cmalinmayor left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we are close, but integration of the two parts is still not great. I recommend putting the shorter examples with less explanation at the beginning as a Quick Start, and the in-depth tutorial afterward, with a bit of change in the scaffolding text to make it flow. The dask comparison would make sense in between to transition from one to another.


# %% [markdown]
# All the labels are now consistent! If you re-run the previous cell with `read_write_conflict=False`, you should see an inconsistent result again due to the race conditions, even though the process function still reads the neighboring output.

# %% [markdown]
# **IMPORTANT PERFORMANCE NOTE:** Be aware that `read_write_conflicts` is set to `True` by default and can lead to performance hits in cases where you don't need it, so be sure to turn it off if you want every block to be run in parallel!

# %% [markdown]
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This still doesn't really make sense as one big tutorial. I think you should put this part that you wrote first as a "Quick start", and then have the part I wrote below as an "In-Depth Tutorial."

Path(tmpdir, f"{block.block_id[1]}").touch()
return block

def check_block(block: daisy.Block) -> bool:
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If the quickstart is first, you can link to the in-depth tutorial locations. E.g. "For more information about the performance implications of the check function, look here (link to in depth section)"

# ![task chaining](_static/task_chaining.gif)

# %% [markdown]
# # Map Reduce and Some simple benchmarks
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't really understand what information this part is trying to impart - I'd probably remove it

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think the main value seemed to be the timings. I figured it can't hurt to have a few more simple examples


# %% [markdown]
# Success! Notice that there is a fade to black at the border, due to the `fill_value=0` argument used when reading the data from the input Array.
# Smoothing is poorly defined at the border of the volume - if you want different behavior, you can expand the input array to include extended data of your choice at the border, or shrink the total output roi by the context to only include the section of the output that depends on existing data.

# %% [markdown]
# ## Conclusion: Dask and Daisy
# ###Conclusion: Dask and Daisy
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would move the section about dask vs daisy between the "quickstart" (your part at the bottom that I think should go first) and the "in depth tutorial". This makes the flow make sense - we have some simple examples, these simple example can also be done with dask. However, daisy is good at X situations. If you have one of X situations and want to learn how to use daisy's unique capabilities to optimize your workflow, read the in-depth tutorial.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I tried this but it felt pretty awkward. There's a lot of info needed to build up to the smoothing task, to then compare dask and daisy. I moved the quickstart examples up to the top, but left the dask comparison in the body

#
# Here is an mp4 visualization of the above task
#
# ![task chaining](_static/task_chaining.gif)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Jan says the blue task is going too fast and overlaps with green in the corners, which is incorrect. But he also LOVES it! 😄

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh I see the confusion. The life cycle of processing a block is "move to location", "create block outline", "mark block done".
This means that the green/blue read/write rois still overlap with the block after it has been marked done. So the read roi of the blue task will overlap with the green write roi of the previous task, this is because the most recently completed block from the previous task will always be green.
I could add an extra step for the block processing animation "fade out" after completing a block, but I think that would be annoying to watch the block Rois fade in and out constantly.

@pattonw pattonw mentioned this pull request Mar 28, 2025
@pattonw pattonw merged commit 0438eff into master Mar 28, 2025
10 checks passed
@pattonw pattonw deleted the update-docs branch March 28, 2025 22:50
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

Successfully merging this pull request may close these issues.

2 participants