-
Notifications
You must be signed in to change notification settings - Fork 299
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add an option to read shapes from csv
Summary: Make 3 improvements: 1. Read shapes from a csv file. 2. Support bias in the gemm computation. 3. Add Hammer HSTU Triton Matmul Impl. Reviewed By: nmacchioni Differential Revision: D55768916 fbshipit-source-id: bb139311b98adcacf4e0383ad569b70865d789f1
- Loading branch information
1 parent
abf184d
commit a513690
Showing
3 changed files
with
182 additions
and
79 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
M,K,N,Bias | ||
152710,512,2048,2048 | ||
64896,512,2048,2048 | ||
6,1536,384, | ||
6,768,3072, | ||
6144,384,384, | ||
462,384,768, | ||
462,384,4096, | ||
462,384,1472, | ||
6144,3072,384, | ||
6144,384,1536, | ||
6,1536,3072, | ||
1536,768,768, | ||
462,768,768, | ||
462,768,4096, | ||
462,768,1472, | ||
1536,6144,768, | ||
1536,768,3072, | ||
6,3072,3072, | ||
384,1536,1536, | ||
462,1536,768, | ||
462,1536,4096, | ||
462,1536,1472, | ||
384,12288,1536, | ||
384,1536,6144, | ||
96,1536,1536, | ||
96,12288,1536, | ||
96,1536,6144, | ||
256,256,256, | ||
384,384,384, | ||
512,512,512, | ||
640,640,640, | ||
768,768,768, | ||
896,896,896, | ||
1024,1024,1024, | ||
1152,1152,1152, | ||
1280,1280,1280, | ||
1408,1408,1408, | ||
1536,1536,1536, | ||
1664,1664,1664, | ||
1792,1792,1792, | ||
1920,1920,1920, | ||
2048,2048,2048, | ||
2176,2176,2176, | ||
2304,2304,2304, | ||
2432,2432,2432, | ||
2560,2560,2560, | ||
2688,2688,2688, | ||
2816,2816,2816, | ||
2944,2944,2944, | ||
3072,3072,3072, | ||
3200,3200,3200, | ||
3328,3328,3328, | ||
3456,3456,3456, | ||
3584,3584,3584, | ||
3712,3712,3712, | ||
3840,3840,3840, | ||
3968,3968,3968, | ||
4096,4096,4096, |
Oops, something went wrong.