Dan Schult

Results 543 comments of Dan Schult

The algorithm is by Paton as referenced in the citations on [the doc-page](https://networkx.org/documentation/stable/reference/algorithms/generated/networkx.algorithms.cycles.cycle_basis.html)

@anushkasuyal I think one conversation (function signature type annotation) still remains. @rgommers That timing for further review and possible merging later in next week sounds good to me. I should...

I'm merging this which will make the other PRs (#21412 and #21435) need some rebasing/merging. Thanks very much @anushkasuyal and @izaid !

This PR introduces a new method `csr.broadcast_to` but it doesn't use it anywhere. And it doesn't introduce `coo.broadcast_to` which the later PRs do have in their diffs..., so: Is this...

> I made a separate PR for CSR broadcasting as I noticed a few comments in _compressed.py which labelled it as TODO. As huge PRs with a large amount of...

Right... I've looked into this a bunch now too and the closest I can come to copy-free `tile` functionality is np.broadcast to a 2D array and then use `.flat` to...

Making it a private "helper" method would be my preference. It's easier to make it public later than to make it private later. :)

I think something close to the following will get this PR back in shape without conflicts. I can push it up if you like. ```bash git checkout main git pull...

This PR shows changes to 462 files most of which are not relevant for this work. Can you merge the main branch or rebase the changes for nD COO onto...

It looks like the `dot` method and `_matmul_dispatch` are both doing the same thing. But it is hard to tell because the code for each is split over multiple methods....