Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
e7fbac1
refactor(triton): reorganize conv modules and unify gated FP8 quant path
hellozhuo-amd May 6, 2026
f7616c4
Updated op_tests/triton_tests/quant/test_fused_rms_gated_fp8_group_qu…
hellozhuo-amd May 6, 2026
658a217
fix: add group boundary masking in gated FP8 quant kernel loop
Copilot May 6, 2026
faf4ee2
fix: pass constant placeholders for gated-only constexprs in non-gate…
Copilot May 6, 2026
076ab91
Merge branch 'main' into zhuo/triton-pr2423-reorg
hellozhuo-amd May 6, 2026
8b756ac
fix(triton): backward-compat conv imports and align conv tests
hellozhuo-amd May 6, 2026
e1687f3
Merge branch 'main' into zhuo/triton-pr2423-reorg
hellozhuo-amd May 6, 2026
2e74ecd
Merge branch 'main' into zhuo/triton-pr2423-reorg
hellozhuo-amd May 7, 2026
95d0453
refactor(triton): address PR review comments on conv/__init__ and qua…
hellozhuo-amd May 12, 2026
3b1b41b
merge: resolve split_tests.sh conflict — keep origin/main timings, up…
hellozhuo-amd May 12, 2026
88a0341
Empty two __init__.py
hellozhuo-amd May 12, 2026
be78bdf
Merge with origin/main
hellozhuo-amd May 13, 2026
0e7862e
Merge branch 'main' into zhuo/triton-pr2423-reorg
hellozhuo-amd May 13, 2026
aa97b50
Merge branch 'main' into zhuo/triton-pr2423-reorg
hellozhuo-amd May 15, 2026
5a049bd
Merge branch 'main' into zhuo/triton-pr2423-reorg
hellozhuo-amd May 15, 2026
9af82b8
Merge branch 'main' into zhuo/triton-pr2423-reorg
hellozhuo-amd May 18, 2026
69f125e
Merge origin/main into zhuo/triton-pr2423-reorg
hellozhuo-amd May 19, 2026
edf4fc5
fix(triton): guard gluon kernel imports and feature-detection Attribu…
hellozhuo-amd May 20, 2026
72bba4a
Merge remote-tracking branch 'origin/main' into zhuo/triton-pr2423-reorg
hellozhuo-amd May 20, 2026
56cf0e2
Solve the conflict
hellozhuo-amd Jun 12, 2026
e98f44e
Fix the import error for MxScaleRoundMode in aiter/ops/quant.py
hellozhuo-amd Jun 12, 2026
0e3d10a
Merge branch 'main' into zhuo/triton-pr2423-reorg
hellozhuo-amd Jun 12, 2026
06edca2
Merge remote-tracking branch 'origin/main' into zhuo/triton-pr2423-reorg
hellozhuo-amd Jun 15, 2026
5d99956
Merge branch 'main' into zhuo/triton-pr2423-reorg
hellozhuo-amd Jun 15, 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
2 changes: 1 addition & 1 deletion .github/scripts/split_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ elif [[ "$TEST_TYPE" == "triton" ]]; then
FILE_TIMES[op_tests/triton_tests/attention/test_mha.py]=1452
FILE_TIMES[op_tests/triton_tests/test_pa_decode_gluon.py]=718
FILE_TIMES[op_tests/triton_tests/attention/test_pa_decode.py]=635
FILE_TIMES[op_tests/triton_tests/test_causal_conv1d.py]=634
FILE_TIMES[op_tests/triton_tests/conv/test_causal_conv1d.py]=634
FILE_TIMES[op_tests/triton_tests/gemm/batched/test_batched_gemm_a8w8_a_per_token_group_prequant_w_per_batched_tensor_quant.py]=402
FILE_TIMES[op_tests/triton_tests/attention/test_flash_attn_kvcache.py]=357
FILE_TIMES[op_tests/triton_tests/attention/test_chunked_pa_prefill.py]=336
Expand Down
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -79,4 +79,8 @@ scripts/results/*.csv

# Jupyter notebook checkpoints and outputs
.ipynb_checkpoints/
**/.ipynb_checkpoints/
**/.ipynb_checkpoints/

# vim swaps
*.swo
*.swp
6 changes: 6 additions & 0 deletions aiter/ops/triton/_triton_kernels/conv/__init__.py
Comment thread
Boss2002n marked this conversation as resolved.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# SPDX-License-Identifier: MIT
# Copyright (C) 2024-2026, Advanced Micro Devices, Inc. All rights reserved.

from .causal_conv1d import PAD_SLOT_ID

__all__ = ["PAD_SLOT_ID"]
Loading
Loading