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

Add new matmul test with M and N tiled as scf.for loop nest instead of air.launch #827

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

erwei-xilinx
Copy link
Collaborator

Pseudo code for the GEMM tiling strategy:

air.launch in (1, 1):
  for n in range(N):
    for m in range(M):
      zero_fill_acc
      for k in range(K):
        air.herd %h_m, %h_n in (4, 4):
          mmul
      memcpy_acc

Depends on #825 and #826.

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

Successfully merging this pull request may close these issues.

1 participant