Pavithra Eswaramoorthy
Pavithra Eswaramoorthy
In #9350, we added the `assume_a` kwarg to `da.linalg.solve` for consistency with [`scipy.linalg.solve`](https://docs.scipy.org/doc/scipy/reference/generated/scipy.linalg.solve.html). Dask currently only supports `assume_a` = 'gen' and 'pos', it'll be nice to look into supporting 'her'...
In #9350, we deprecated the `sym_pos` kwarg in favour of `assume_a`, [similar to scipy](https://docs.scipy.org/doc/scipy/reference/generated/scipy.linalg.solve.html). This issue is to ensure we remove `sym_pos` in a future release.
- [x] Closes #9291 - [ ] Tests added / passed - [x] Passes `pre-commit run --all-files`
We have some methods that operate on Dask DataFrame Index (sometimes this is slightly different from how they operate on DataFrame/Series, eg: #9290). It'll be nice to document these. Maybe...
**Minimal Complete Verifiable Example**: ```python from dask.distributed import Client, LocalCluster cluster = LocalCluster(n_workers=2, threads_per_worker=4, memory_target_fraction=0.95, memory_limit='32GB') client = Client(cluster) client ``` **What happened**: Looks like the `memory_limit` keyword argument used...
## Description I'm using the new updates to the blog pages (thank you so much for this!), and noticed the page selector is left aligned. ) **What...
It'll be nice to be able to copy code snippets directly from the docs, [sphinx-copybutton](https://sphinx-copybutton.readthedocs.io/en/latest/index.html) is a lightweight tool that can be used for this. (Personally, I'd really appreciate this....
Originally noted by @ian-r-rose and @jsignell in https://github.com/dask/dask/pull/9366#pullrequestreview-1065912197: > I think we should reconsider some of the policies around all of these backwards incompatibility checks, and probably phase some of...
It'll be useful to have a dedicated notebook to discuss Dask's diagnostic tools, including task graph visualization, widgets for local compute, dashboard for distributed computation, etc. It can be a...