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

[FEA] Use cuBLAS's hermitian transpose if hermitian operator is used #291

Open
cliffburdick opened this issue Oct 13, 2022 · 0 comments
Open

Comments

@cliffburdick
Copy link
Collaborator

As commonly done in signal processing code a user can do:

matmul(c, a, hermitian(b));

But this is not currently possible since you cannot pass an operator into matmul. Instead, a user must make a temporary copy of the hermitian'd matrix into another tensor, then call matmul. Instead, we can detect if this is a primary hermitian operator and pass this to the underlying GEMM library rather than adding the extra copy.

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