|
28 | 28 | EXAMPLES = [ |
29 | 29 | { |
30 | 30 | "category": "Matrix", |
31 | | - "name": "Matrix Multiplication (BF16)", |
32 | | - "path": "matmul_bf16_m64_n64_k64", |
| 31 | + "name": "Matrix Multiplication", |
| 32 | + "path": "matmul", |
33 | 33 | "datatypes": "bf16", |
34 | 34 | }, |
35 | 35 | { |
36 | 36 | "category": "Matrix", |
37 | | - "name": "Padded Matrix Multiplication (F32, A Transposed)", |
38 | | - "path": "matmul_f32_m64_n32_k16_padded_atransposed", |
| 37 | + "name": "Padded Matrix Multiplication", |
| 38 | + "path": "padded_matmul", |
39 | 39 | "datatypes": "f32 (bf16 emulation)", |
40 | 40 | }, |
41 | | - { |
42 | | - "category": "Matrix", |
43 | | - "name": "Matrix Multiplication (INT8)", |
44 | | - "path": "matmul_i8_m64_n64_k64", |
45 | | - "datatypes": "i8", |
46 | | - }, |
47 | | - { |
48 | | - "category": "Matrix", |
49 | | - "name": "Matrix Multiplication (INT8, Large Tile)", |
50 | | - "path": "matmul_i8_m128_n64_k64", |
51 | | - "datatypes": "i8", |
52 | | - }, |
53 | 41 | { |
54 | 42 | "category": "Matrix", |
55 | 43 | "name": "Matrix Multiplication (Autotune)", |
@@ -226,11 +214,11 @@ def generate_readme(base_url=""): |
226 | 214 | source /opt/xilinx/xrt/setup.sh |
227 | 215 |
|
228 | 216 | # Run an example on AIE2 (NPU1): |
229 | | -cd matmul_bf16_m64_n64_k64 |
230 | | -AIR_TRANSFORM_TILING_SCRIPT=transform_aie2.mlir python matmul_bf16_m64_n64_k64.py |
| 217 | +cd matmul |
| 218 | +AIR_TRANSFORM_TILING_SCRIPT=transform_aie2.mlir python matmul.py |
231 | 219 |
|
232 | 220 | # Run on AIE2P (NPU2): |
233 | | -AIR_TRANSFORM_TILING_SCRIPT=transform_aie2p.mlir python matmul_bf16_m64_n64_k64.py |
| 221 | +AIR_TRANSFORM_TILING_SCRIPT=transform_aie2p.mlir python matmul.py |
234 | 222 | ``` |
235 | 223 |
|
236 | 224 | ## Running All Tests |
|
0 commit comments