-
Notifications
You must be signed in to change notification settings - Fork 308
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
Implement Kronecker product #1105
Conversation
Also I should mention that I kept the name as |
Hm, I just noticed there is also #690. Not sure what direction you want to go, but happy to work on getting an |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't have so much opinions about what's best here - this is outside my area.
It's easier if we maybe see it like this, some of the numerics stuff is not my area, and then it needs help from others to design and maybe even merge it, we maybe need a maintainer who likes that area. 🙂 I'm mainly focusing on certain things. It doesn't mean the other things are not good, just not my focus & interest.
Co-authored-by: bluss <bluss@users.noreply.github.com>
Co-authored-by: bluss <bluss@users.noreply.github.com>
Co-authored-by: Adam Reichold <adam.reichold@t-online.de>
Co-authored-by: bluss <bluss@users.noreply.github.com>
Thanks! Please keep this comment here in mind #1105 (review) - we need a maintainer for "this area" (deeper numerical functions) - also collaboration with the ndarray-linalg crate. |
@bluss yes, I'd be happy to keep contributing and maintaining this area! I sent a message on matrix to follow up :) |
Picking up from #1039 and based on my original implementation in #652 with the feedback from @bluss.
I found this implementation performs the same vs #1039 modulo using
uninit
, at least for my use case.