Skip to content
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
3 changes: 3 additions & 0 deletions aiter/ops/triton/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,9 @@
# Quant modules (quant/)
"fused_fp8_quant": "quant.fused_fp8_quant",
"fused_mxfp4_quant": "quant.fused_mxfp4_quant",
# Conv modules (conv/)
"causal_conv1d": "conv.causal_conv1d",
"causal_conv1d_update_single_token": "conv.causal_conv1d_update_single_token",
}


Expand Down
6 changes: 6 additions & 0 deletions aiter/ops/triton/_triton_kernels/conv/__init__.py
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can we keep this file empty

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