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

Enable matmul diagonalization on any non-secret matrix (not just constant matrix) #1108

Open
AlexanderViand-Intel opened this issue Nov 22, 2024 · 0 comments
Assignees
Labels
dialect: tensor_ext Issues concerning the tensor_ext dialect

Comments

@AlexanderViand-Intel
Copy link
Collaborator

// Diagonalize the matrix only if the matrix is a constant.
auto constantValues =
dyn_cast<arith::ConstantOp>(publicMatrix.getDefiningOp());
if (!constantValues) {
return failure();
}

@AlexanderViand-Intel AlexanderViand-Intel self-assigned this Nov 22, 2024
@AlexanderViand-Intel AlexanderViand-Intel added the dialect: tensor_ext Issues concerning the tensor_ext dialect label Nov 22, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dialect: tensor_ext Issues concerning the tensor_ext dialect
Projects
None yet
Development

No branches or pull requests

1 participant