Skip to content

Commit

Permalink
Add one e2e test 512x512x256 (MxNxK)
Browse files Browse the repository at this point in the history
  • Loading branch information
Abhishek-Varma committed Jan 27, 2025
1 parent 4cb4722 commit cfd9773
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions build_tools/ci/cpu_comparison/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -1712,6 +1712,25 @@ def __init__(self):
use_chess=False,
)
)
self.register(
Matmul(
512,
512,
256,
"i32",
"i32",
name_suffix="4rows_8cols_npu4_pack_peel_4_level_tiling",
tile_pipeline="pack-peel-4-level-tiling",
run_on_target=["npu4"],
aie_compilation_flags=[
"--iree-amdaie-num-rows=4",
"--iree-amdaie-num-cols=8",
"--iree-amd-aie-additional-peano-opt-flags=-O3",
"--iree-amdaie-enable-function-outlining=True",
],
use_chess=True,
)
)

for target in ["npu1_4col", "npu4"]:
self.register(
Expand Down

0 comments on commit cfd9773

Please sign in to comment.