Commit d69fb7b2 authored by zhuwenwen's avatar zhuwenwen
Browse files

update prefix_prefill params

parent 0b5e4e11
...@@ -684,7 +684,7 @@ if triton.__version__ >= "2.1.0": ...@@ -684,7 +684,7 @@ if triton.__version__ >= "2.1.0":
sliding_window=None): sliding_window=None):
cap = torch.cuda.get_device_capability() cap = torch.cuda.get_device_capability()
BLOCK = 128 if cap[0] >= 8 else 64 BLOCK = 128 if cap[0] >= 8 else 32
# shape constraints # shape constraints
Lq, Lk, Lv = q.shape[-1], k.shape[-1], v.shape[-1] Lq, Lk, Lv = q.shape[-1], k.shape[-1], v.shape[-1]
assert Lq == Lk and Lk == Lv assert Lq == Lk and Lk == Lv
...@@ -701,7 +701,7 @@ if triton.__version__ >= "2.1.0": ...@@ -701,7 +701,7 @@ if triton.__version__ >= "2.1.0":
if sliding_window is None or sliding_window <= 0: if sliding_window is None or sliding_window <= 0:
sliding_window = 0 sliding_window = 0
num_warps = 8 if Lk <= 64 else 8 num_warps = 8 if Lk <= 64 else 4
if alibi_slopes is not None: if alibi_slopes is not None:
_fwd_kernel_alibi[grid]( _fwd_kernel_alibi[grid](
q, q,
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment