Add a 1-line docstring to explain why calling context_attention_fwd twice in test_prefix_prefill.py (#2553)

This commit is contained in:
Jason Zhu 2024-01-22 14:47:25 -08:00 committed by GitHub
parent 63e835cbcc
commit 7a0b011dd5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -125,6 +125,7 @@ def test_contexted_kv_attention(
v_cache = v_cache.view(-1, block_size, num_heads,
head_size).permute(0, 2, 3, 1).contiguous()
# Warm up the Triton kernel by calling it once before actually measuring generation time
context_attention_fwd(query, k, v, output, k_cache, v_cache, block_table,
b_start_loc, b_seq_len, b_ctx_len, max_input_len)
torch.cuda.synchronize()