This is an archive of the discontinued LLVM Phabricator instance.

Add linalg.mmt4d named op
ClosedPublic

Authored by asaadaldien on Jun 30 2021, 4:06 PM.

Details

Summary

This op performs matrix-matrix-transpose multiplication of 4-d inputs as the following:

C[m1, n1, m0, n0] = sum_{k1, k0}(A[m1, k1, m0, k0] * B[n1, k1, n0, k0])

Diff Detail

Event Timeline

asaadaldien created this revision.Jun 30 2021, 4:06 PM
asaadaldien requested review of this revision.Jun 30 2021, 4:06 PM
asaadaldien edited the summary of this revision. (Show Details)Jun 30 2021, 4:07 PM
asaadaldien edited the summary of this revision. (Show Details)
Benoit accepted this revision.Jun 30 2021, 4:38 PM

Thank you!

This revision is now accepted and ready to land.Jun 30 2021, 4:38 PM
This revision was automatically updated to reflect the committed changes.