-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add MM 1d with multi-block support (#15864)
### Problem description Matmul1d with multi-block support (similar to the matmul2d support) Current matmul 1d only supports single output block per core, we need to change it so that large matmuls can use less L1. What's changed support multiple output blocks on both height and width for interleaved output. support only multi-block on height for sharded output. support in0 with multi-block on height. support in1/bias with multi-block on width. so we will have 3 levels of blocks: per_core_M block_h subblock_h previously we missed the second one ### Checklist - [x] Post commit CI https://github.com/tenstorrent/tt-metal/actions/runs/12284509644 - [x] Blackhole Post commit https://github.com/tenstorrent/tt-metal/actions/runs/12284513170 - [x] Model regression CI testing https://github.com/tenstorrent/tt-metal/actions/runs/12285308255 - [x] Device performance regression CI testing https://github.com/tenstorrent/tt-metal/actions/runs/12285312770/job/34283864283
- Loading branch information
Showing
9 changed files
with
490 additions
and
141 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.