test(sync): add minimal A5 TMOV col-major alignment repro#2
Open
TaoTao-real wants to merge 1 commit into
Open
Conversation
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
TMOVon16x1 f32 col_majortile intest/samples/Sync/test_tmov_col_major_16x1_align_a5.{py,pto}.test/samples/Sync/test_tmov_row_major_1x16_control_a5.{py,pto}.test/samples/runop.sh:--pto-archis nota5.TMOVand expected tile layout (ColMajor 16x1/RowMajor 1x16).Motivation
We need a focused TMOV-only pair to validate whether A5 runtime failures are caused by
TMOV_V2Valignment behavior forcol_major(RowStride=1) shapes.Validation
bash -n test/samples/runop.shptoas --pto-arch=a5 --enable-insert-sync .../test_tmov_col_major_16x1_align_a5.ptoptoas --pto-arch=a5 --enable-insert-sync .../test_tmov_row_major_1x16_control_a5.ptoTMOV+Tile<..., 16, 1, BLayout::ColMajor, ...>TMOV+Tile<..., 1, 16, BLayout::RowMajor, ...>Notes
This PR adds compiler/sample coverage only. Runtime pass/fail signal should be collected on A5 board by running these two generated kernels side-by-side.