-
Notifications
You must be signed in to change notification settings - Fork 430
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove unused kernel in pytorch engine (#1237)
- Loading branch information
Showing
5 changed files
with
15 additions
and
473 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,15 @@ | ||
# Copyright (c) OpenMMLab. All rights reserved. | ||
from .alibi_pagedattention import alibi_paged_attention_fwd | ||
from .apply_rotary_pos_emb import apply_rotary_pos_emb | ||
from .biased_pagedattention import biased_paged_attention_fwd | ||
from .fill_kv_cache import fill_kv_cache | ||
from .flashattention_nopad import context_attention_fwd | ||
from .fused_rotary_emb import fused_rotary_emb | ||
from .multinomial_sampling import multinomial_sampling | ||
from .pagedattention import paged_attention_fwd | ||
from .rerope_attention import rerope_attention_fwd | ||
from .rms_norm import rms_norm | ||
|
||
__all__ = [ | ||
'apply_rotary_pos_emb', 'context_attention_fwd', 'fused_rotary_emb', | ||
'paged_attention_fwd', 'biased_paged_attention_fwd', | ||
'apply_rotary_pos_emb', 'fused_rotary_emb', 'paged_attention_fwd', | ||
'alibi_paged_attention_fwd', 'fill_kv_cache', 'multinomial_sampling', | ||
'rms_norm', 'rerope_attention_fwd' | ||
] |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.