-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Summary: We still need to patch HSTU at runtime, we do not need to patch xformers as it is already installed. Also, move all compilation artifacts to `$REPO_DIR/.data` so that we do not need to recompile colfax and tk. Pull Request resolved: #72 Reviewed By: adamomainz Differential Revision: D66363425 Pulled By: xuzhao9 fbshipit-source-id: e3fe1a49bc89973e12a10dbd3cba0e8f1b9297bd
- Loading branch information
1 parent
17e025d
commit e8f5ba4
Showing
10 changed files
with
66 additions
and
11 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Tests we skip in triton-pytorch + OSS CI | ||
# triton-pytorch is the triton version bundled with pytorch nightly | ||
# We need to skip kernels that only work on triton-main | ||
# Usage: | ||
# op-name: to skip an entire operator | ||
# op-name:\n\t- impl-name to skip an impl | ||
flash_attention: | ||
# thunderkittens cannot handle the default input shapes | ||
- tk | ||
# _ws kernels require Triton with warp specialization | ||
- triton_tutorial_flash_v2_ws | ||
- triton_tutorial_flash_v2_tma_ws | ||
fp8_attention: | ||
# fb-only kernel | ||
- colfax_fmha | ||
# fb-only kernels | ||
fp8_fused_quant_gemm_rowwise: | ||
fp8_gemm: | ||
# FIXME: out of shared memory | ||
- triton_persistent_fp8_gemm | ||
# FIXME: out of shared memory | ||
- triton_tma_persistent_fp8_gemm | ||
gemm: | ||
# FIXME: out of shared memory | ||
- triton_tma_persistent_matmul | ||
# FIXME: out of shared memory | ||
- triton_tma_persistent_cached_matmul | ||
# internal only kernels | ||
- hstu_triton_matmul | ||
- colfax_cutlass_matmul | ||
# jagged tests are slow, so disable them in OSS | ||
jagged_layer_norm: | ||
jagged_mean: | ||
jagged_softmax: | ||
jagged_sum: | ||
# FIXME: ragged attention will Abort (Core Dump) on Triton Main | ||
ragged_attention: | ||
test_op: | ||
fwd_only_ops: | ||
- flash_attention |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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