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

BB-54: Operations involving implicit Kronecker product #26

Open
mcmillan03 opened this issue Sep 3, 2021 · 0 comments
Open

BB-54: Operations involving implicit Kronecker product #26

mcmillan03 opened this issue Sep 3, 2021 · 0 comments

Comments

@mcmillan03
Copy link
Member

GraphBLAS rarely needs the kronecker product function but rather an implicit kronecker product. Something like:

kron_mxv(y, A, B, v)

This would create a result vector y as if it did the following sequence:

C=kron(A,B)
y = C*v

But it never generates C. It is possible to use the non-blocking interface for this but I wonder if we would be better off with a direct function. Otherwise, it is fairly unlikely for the implementers to anticipate this use case an capture it.

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

No branches or pull requests

1 participant