Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
595423d
Add benchmark capabilities for ops.
neoblizz Feb 3, 2026
8c965a1
Merge branch 'main' into neoblizz/iris-xops-perf
neoblizz Feb 7, 2026
ef227b0
Merge conflicts.
neoblizz Feb 7, 2026
f132ceb
Up the tritonBLAS commit.
neoblizz Feb 7, 2026
1628a61
...
neoblizz Feb 10, 2026
c26e872
Apply Ruff auto-fixes
github-actions[bot] Feb 10, 2026
3d4c7d7
Fix load vectorization and transpose config
ryanswann-amd Feb 11, 2026
5b02211
Apply Ruff auto-fixes
github-actions[bot] Feb 11, 2026
4c3b3f4
Add HBM buffered version
ryanswann-amd Feb 11, 2026
a301392
Merge branch 'ryaswann/iris_xops_perf' of github.com:ROCm/iris into r…
ryanswann-amd Feb 11, 2026
1f3b9ef
Apply Ruff auto-fixes
github-actions[bot] Feb 11, 2026
45288ff
Use workgroup specialized variant
ryanswann-amd Feb 13, 2026
b2aadcd
Apply Ruff auto-fixes
github-actions[bot] Feb 13, 2026
7b2321e
Update hbm buffered all gather matmul
ryanswann-amd Feb 16, 2026
a4d845f
Merge branch 'ryaswann/iris_xops_perf' of github.com:ROCm/iris into r…
ryanswann-amd Feb 16, 2026
9692222
Apply Ruff auto-fixes
github-actions[bot] Feb 16, 2026
44ebc97
Add tracing
ryanswann-amd Feb 16, 2026
0c2842e
Merge branch 'ryaswann/iris_xops_perf' of github.com:ROCm/iris into r…
ryanswann-amd Feb 17, 2026
11d017a
Apply Ruff auto-fixes
github-actions[bot] Feb 17, 2026
ace40d0
Add stages to all_gather_matmul_hbm_buffer
ryanswann-amd Feb 17, 2026
950c3a0
Merge branch 'ryaswann/iris_xops_perf' of github.com:ROCm/iris into r…
ryanswann-amd Feb 17, 2026
f7612bd
Apply Ruff auto-fixes
github-actions[bot] Feb 17, 2026
51bccb5
Updates to benchmark and kernel
ryanswann-amd Feb 17, 2026
9b71523
Merge branch 'ryaswann/iris_xops_perf' of github.com:ROCm/iris into r…
ryanswann-amd Feb 17, 2026
cbe2aff
Apply Ruff auto-fixes
github-actions[bot] Feb 17, 2026
11d9001
Add predictive params, fix pointer overflows, fix race conditions
Mar 3, 2026
3c4cb4d
Apply Ruff auto-fixes
github-actions[bot] Mar 3, 2026
f2f755a
Merge branch 'neoblizz/iris-xops-perf' into ryaswann/iris_xops_perf
ryanswann-amd Mar 3, 2026
77eff5b
Reverse 2D block translate
Mar 3, 2026
dcafd2a
Properly use iris tracing APIs
Mar 3, 2026
6fdad6d
Apply Ruff auto-fixes
github-actions[bot] Mar 3, 2026
08755b7
Remove test.sh
Mar 3, 2026
88f7767
All gather matmul with improved performance. (#415)
ryanswann-amd Mar 5, 2026
f558293
Fix CI: restore vectorization hints, align tritonBLAS versions, remov…
ryanswann-amd Mar 6, 2026
e5dd77f
Merge main into neoblizz/iris-xops-perf
ryanswann-amd Mar 6, 2026
477b472
Fix CI: increase default N to match FusedConfig block_size_n=256
ryanswann-amd Mar 6, 2026
76cc30d
Revert "Fix CI: increase default N to match FusedConfig block_size_n=…
ryanswann-amd Mar 6, 2026
9743b13
Remove unnecessary block size assertions — Triton handles masking
ryanswann-amd Mar 6, 2026
a86dc04
Initial plan
Copilot Mar 11, 2026
445b25c
Add vectorization hints and tests for HBM buffer all-gather matmul
Copilot Mar 12, 2026
2f0099f
Add vectorization hints and tests for HBM buffer all-gather matmul (#…
ryanswann-amd Mar 12, 2026
39c213d
Merge branch 'main' into neoblizz/iris-xops-perf
ryanswann-amd Mar 16, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/scripts/run_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,10 @@ EXIT_CODE=0
# shellcheck disable=SC2086
"$SCRIPT_DIR/container_exec.sh" $GPU_ARG "
set -e

echo \"Installing iris using method: $INSTALL_METHOD\"
$INSTALL_CMD

# Run tests in the specified directory
for test_file in tests/$TEST_DIR/test_*.py; do
if [ -f \"\$test_file\" ]; then
Expand All @@ -88,4 +88,4 @@ EXIT_CODE=0
" || { EXIT_CODE=$?; }

# GPU cleanup is now handled by workflow-level release_gpus.sh step
exit $EXIT_CODE
exit $EXIT_CODE
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ omni*.pdf
slurm*.out

*.egg-info
*.backup
*.with_chunked

examples/gemm/results/*
asm/
Expand Down
2 changes: 1 addition & 1 deletion apptainer/iris.def
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ From: rocm/pytorch:rocm7.1_ubuntu24.04_py3.13_pytorch_release_2.9.1
cd /opt
git clone https://github.com/triton-lang/triton.git \$TRITON_PATH
cd \$TRITON_PATH
git checkout bcbcabdd0cff6539c7168299075992b2a23ff38e
git checkout bcbcabdd0cff6539c7168299075992b2a23ff38e
pip3 install -e .

# Make the venv writable by all
Expand Down
Loading
Loading