/* * SPDX-FileCopyrightText: Copyright (c) 1993-2024 NVIDIA CORPORATION & * AFFILIATES. All rights reserved. SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include "tensorrt_llm/common/attentionOp.h" #include "tensorrt_llm/common/dataType.h" #include "tensorrt_llm/kernels/gptKernels.h" #include "tensorrt_llm/kernels/mlaKernels.h" #include "tensorrt_llm/runtime/torchUtils.h" #include "tensorrt_llm/runtime/utils/debugUtils.h" #include "tensorrt_llm/thop/thUtils.h" #include #include #include #include namespace torch_ext { using tensorrt_llm::common::op::AttentionOp; using tensorrt_llm::common::op::hash; using tensorrt_llm::runtime::RequestType; namespace trtllm::attention { using tensorrt_llm::kernels::KVBlockArray; using tensorrt_llm::kernels::MlaParams; enum class AttentionInputType : int8_t { Mixed, ContextOnly, GenerationOnly, }; class RunnerBase { public: int32_t beam_width; int32_t max_num_requests; int32_t attention_window_size; int32_t sink_token_length; auto data() const { return std::make_tuple(beam_width, max_num_requests, attention_window_size, sink_token_length); }; virtual ~RunnerBase() = default; virtual void prepare(AttentionOp& op) const = 0; virtual int64_t getWorkspaceSize(AttentionOp const& op, int const num_tokens, int const max_attention_window_size, int const num_gen_tokens) const = 0; virtual void run(AttentionOp& op, bool const is_context, int32_t const seq_offset, int32_t const num_seqs, int32_t const token_offset, int32_t const num_tokens, int32_t const predicted_tokens_per_seq, torch::Tensor workspace, torch::Tensor output, torch::optional output_sf, torch::Tensor qkv, torch::Tensor sequence_length, torch::Tensor host_past_key_value_lengths, torch::Tensor context_lengths, torch::Tensor host_context_lengths, torch::optional kv_cache_block_offsets, torch::optional host_kv_cache_block_offsets, torch::optional host_kv_cache_pool_pointers, torch::optional host_kv_cache_pool_mapping, torch::optional cache_indirection, torch::optional kv_scale_orig_quant, torch::optional kv_scale_quant_orig, torch::optional out_scale, torch::optional rotary_inv_freq, torch::optional rotary_cos_sin, torch::optional latent_cache, torch::optional q_pe, torch::optional block_ids_per_seq, torch::optional mrope_rotary_cos_sin, torch::optional mrope_position_deltas, torch::optional mla_context_paged_kv, torch::optional mla_context_kv_cache_block_offsets, torch::optional softmax_stats_tensor, c10::ArrayRef> spec_decoding_tensor_params) const = 0; }; template class Runner : public RunnerBase { public: void prepare(AttentionOp& op) const override { AttentionOp::EnqueueGenerationParams enqueueParams; enqueueParams.max_attention_window_size = attention_window_size; enqueueParams.cyclic_attention_window_size = attention_window_size; enqueueParams.max_cyclic_attention_window_size = attention_window_size; enqueueParams.sink_token_length = sink_token_length; enqueueParams.beam_width = beam_width; enqueueParams.num_requests = max_num_requests; op.prepareEnqueueGeneration(enqueueParams); // Always reserve SemaphoreArray (for multi-block mode) as MMHA may enable multi-block mode when shared memory // is not enough. op.reserveSemaphoreArray(op.mNumHeads * max_num_requests); } int64_t getWorkspaceSize(AttentionOp const& op, int const num_tokens, int const max_attention_window_size, int const num_gen_tokens) const override { size_t const context_workspace_size = op.getWorkspaceSizeForContext(op.mType, max_num_requests, op.mMaxContextLength, 0, num_tokens); size_t const generation_workspace_size = op.getWorkspaceSizeForGeneration(op.mType, max_num_requests, max_attention_window_size, num_gen_tokens); return std::max(context_workspace_size, generation_workspace_size); } void run(AttentionOp& op, bool const is_context, int32_t const seq_offset, int32_t const num_seqs, int32_t const token_offset, int32_t const num_tokens, int32_t const predicted_tokens_per_seq, torch::Tensor workspace, torch::Tensor output, torch::optional output_sf, torch::Tensor qkv, torch::Tensor sequence_length, torch::Tensor host_past_key_value_lengths, torch::Tensor context_lengths, torch::Tensor host_context_lengths, torch::optional kv_cache_block_offsets, torch::optional host_kv_cache_block_offsets, torch::optional host_kv_cache_pool_pointers, torch::optional host_kv_cache_pool_mapping, torch::optional cache_indirection, torch::optional kv_scale_orig_quant, torch::optional kv_scale_quant_orig, torch::optional out_scale, torch::optional rotary_inv_freq, torch::optional rotary_cos_sin, torch::optional latent_cache, torch::optional q_pe, torch::optional block_ids_per_seq, torch::optional mrope_rotary_cos_sin, torch::optional mrope_position_deltas, torch::optional mla_context_paged_kv, torch::optional mla_context_kv_cache_block_offsets, torch::optional softmax_stats_tensor, c10::ArrayRef> spec_decoding_tensor_params) const override { auto stream = at::cuda::getCurrentCUDAStream(qkv.get_device()); T* attention_input = static_cast(qkv.slice(0, token_offset).data_ptr()); AttentionOutT* context_buf = static_cast(output.slice(0, token_offset).data_ptr()); TORCH_CHECK(!op.mFuseFp4Quant || output_sf.has_value()); void* context_buf_sf = op.mFuseFp4Quant ? output_sf->data_ptr() : nullptr; // Rotary inv_freq, cos_sin cache to avoid re-computing. float const* rotary_inv_freq_ptr = nullptr; float2 const* rotary_cos_sin_ptr = nullptr; if (op.isRoPE()) { if (rotary_inv_freq.has_value()) { rotary_inv_freq_ptr = rotary_inv_freq.value().data_ptr(); } rotary_cos_sin_ptr = static_cast(rotary_cos_sin.value().data_ptr()); } void* workspace_ptr = workspace.data_ptr(); [[maybe_unused]] MlaParams mla_params; if (op.isMLAEnabled()) { if (is_context && op.mPagedContextFMHA && op.mPagedKVCache) { TORCH_CHECK(mla_context_paged_kv.has_value()); TORCH_CHECK(mla_context_kv_cache_block_offsets.has_value()); mla_params.context_paged_kv_ptr = mla_context_paged_kv->data_ptr(); mla_params.context_kv_cache_block_offsets_ptr = mla_context_kv_cache_block_offsets->data_ptr(); mla_params.context_paged_kv_max_blocks_per_seq = mla_context_kv_cache_block_offsets->size(-1); } else { // assume latent_cache has been written to paged kv cache by the PyTorch backend TORCH_CHECK(latent_cache.has_value()); mla_params.latent_cache = static_cast(latent_cache->data_ptr()); } if (!is_context) { TORCH_CHECK(q_pe.has_value()); TORCH_CHECK(q_pe->dim() == 3); TORCH_CHECK(q_pe->strides()[2] == 1); mla_params.q_pe = static_cast(q_pe->data_ptr()); mla_params.q_pe_ld = q_pe->strides()[1]; mla_params.q_pe_stride = q_pe->strides()[0]; } mla_params.attention_input_buf = attention_input; mla_params.context_buf = reinterpret_cast(context_buf); mla_params.cos_sin_cache = rotary_cos_sin_ptr; mla_params.batch_size = num_seqs; mla_params.acc_q_len = num_tokens; mla_params.head_num = op.mNumHeads; mla_params.meta = op.mMLAParams; mla_params.workspace = workspace_ptr; } int const* context_lengths_ptr = context_lengths.slice(0, seq_offset).data_ptr(); int const* sequence_lengths_ptr = sequence_length.slice(0, seq_offset).data_ptr(); // Note we still need context length during generation for MMHA optimization. int32_t const max_context_q_len = host_context_lengths.slice(0, seq_offset, seq_offset + num_seqs).max().item(); int32_t const max_past_kv_length = host_past_key_value_lengths.slice(0, seq_offset, seq_offset + num_seqs).max().item(); // Commonly, cyclic_attention_window_size, and max_attention_window_size will be the same // unless each layer has different attention window sizes. // the kv_cache capacity. int const max_attention_window_size = beam_width == 1 ? attention_window_size : cache_indirection.value().size(2); // The cyclic_attention_window_size will determine the cyclic kv cache position of new tokens. // Note that this cyclic_attention_window_size might be smaller than the actual kv cache capactity. int const cyclic_attention_window_size = attention_window_size; bool const can_use_one_more_block = beam_width > 1; int max_blocks_per_sequence = op.useKVCache() ? kv_cache_block_offsets.value().size(-1) : 0; int32_t const pool_index = op.useKVCache() ? host_kv_cache_pool_mapping.value().index({op.mLayerIdx, 0}).item() : 0; int32_t const layer_idx_in_cache_pool = op.useKVCache() ? host_kv_cache_pool_mapping.value().index({op.mLayerIdx, 1}).item() : 0; KVBlockArray::DataType* block_offsets = static_cast( op.useKVCache() ? kv_cache_block_offsets.value().index({pool_index, seq_offset}).data_ptr() : nullptr); KVBlockArray::DataType* host_block_offsets = static_cast( op.useKVCache() ? host_kv_cache_block_offsets.value().index({pool_index, seq_offset}).data_ptr() : nullptr); auto const cache_elem_size = (op.mKVCacheQuantMode.hasKvCacheQuant() ? 1 : sizeof(T)); auto const block_size = op.mTokensPerBlock * op.mNumKVHeads * op.mHeadSize; auto const bytes_per_block = block_size * cache_elem_size; int32_t const kv_factor = op.isMLAEnabled() ? 1 : 2; auto const intra_pool_offset = layer_idx_in_cache_pool * kv_factor * bytes_per_block; void* host_primary_pool_pointer = op.useKVCache() ? reinterpret_cast( reinterpret_cast(host_kv_cache_pool_pointers.value().index({pool_index, 0}).item()) + intra_pool_offset) : nullptr; void* host_secondary_pool_pointer = op.useKVCache() ? reinterpret_cast( reinterpret_cast(host_kv_cache_pool_pointers.value().index({pool_index, 1}).item()) + intra_pool_offset) : nullptr; float const* kv_scale_orig_quant_ptr = nullptr; float const* kv_scale_quant_orig_ptr = nullptr; if (op.mKVCacheQuantMode.hasKvCacheQuant()) { kv_scale_orig_quant_ptr = kv_scale_orig_quant.value().data_ptr(); kv_scale_quant_orig_ptr = kv_scale_quant_orig.value().data_ptr(); } // For FP8 output, out_scale represents the output scale. float const* out_scale_ptr = (op.mFP8ContextFMHA && !op.mFuseFp4Quant) ? out_scale.value().data_ptr() : nullptr; // For NVFP4 output, out_scale holds the global scale for scaling factors. float const* out_sf_scale_ptr = op.mFuseFp4Quant ? out_scale.value().data_ptr() : nullptr; AttentionOp::EnqueueParams common_enqueue_params; common_enqueue_params.attention_input = attention_input; common_enqueue_params.rotary_inv_freq = rotary_inv_freq_ptr; common_enqueue_params.rotary_cos_sin = rotary_cos_sin_ptr; common_enqueue_params.max_past_kv_length = max_past_kv_length; common_enqueue_params.max_attention_window_size = max_attention_window_size; common_enqueue_params.cyclic_attention_window_size = cyclic_attention_window_size; common_enqueue_params.max_cyclic_attention_window_size = cyclic_attention_window_size; common_enqueue_params.can_use_one_more_block = can_use_one_more_block; common_enqueue_params.sink_token_length = sink_token_length; common_enqueue_params.kv_scale_orig_quant = kv_scale_orig_quant_ptr; common_enqueue_params.kv_scale_quant_orig = kv_scale_quant_orig_ptr; common_enqueue_params.attention_output_orig_quant = out_scale_ptr; common_enqueue_params.attention_output_sf_scale = out_sf_scale_ptr; common_enqueue_params.context_buf = context_buf; common_enqueue_params.context_buf_sf = context_buf_sf; common_enqueue_params.block_offsets = block_offsets; common_enqueue_params.host_primary_pool_pointer = host_primary_pool_pointer; common_enqueue_params.host_secondary_pool_pointer = host_secondary_pool_pointer; common_enqueue_params.num_tokens = num_tokens; common_enqueue_params.max_blocks_per_sequence = max_blocks_per_sequence; common_enqueue_params.sequence_lengths = sequence_lengths_ptr; common_enqueue_params.context_lengths = context_lengths_ptr; common_enqueue_params.host_context_lengths = host_context_lengths.data_ptr(); common_enqueue_params.workspace = workspace_ptr; if (is_context) // context stage { common_enqueue_params.input_seq_length = max_context_q_len; AttentionOp::EnqueueContextParams enqueue_params{common_enqueue_params}; enqueue_params.host_block_offsets = host_block_offsets; enqueue_params.batch_size = num_seqs; if (softmax_stats_tensor.has_value()) { enqueue_params.softmaxStatsPtr = static_cast(softmax_stats_tensor.value().data_ptr()); } if (op.isMLAEnabled()) { mla_params.cache_seq_lens = sequence_lengths_ptr; mla_params.max_input_seq_len = max_context_q_len; enqueue_params.mla_param = &mla_params; } if (op.isMRoPE() && mrope_rotary_cos_sin.has_value()) { enqueue_params.mrope_rotary_cos_sin = static_cast(mrope_rotary_cos_sin.value().data_ptr()); } op.enqueueContext(enqueue_params, stream); } else // generation stage { int32_t const batch_beam = num_seqs; TLLM_CHECK(batch_beam % beam_width == 0); int32_t const num_requests = batch_beam / beam_width; TLLM_CHECK_WITH_INFO(num_tokens % num_seqs == 0, "seq_len should be same for all generation requests, num_tokens=%d, num_seqs=%d", num_tokens, num_seqs); int32_t const input_seq_length = num_tokens / num_seqs; common_enqueue_params.input_seq_length = input_seq_length; AttentionOp::EnqueueGenerationParams enqueue_params{common_enqueue_params}; enqueue_params.beam_width = beam_width; enqueue_params.num_requests = num_requests; enqueue_params.cache_indir = beam_width == 1 ? nullptr : cache_indirection.value().data_ptr(); enqueue_params.semaphores = op.multiBlockSemaphores(); enqueue_params.host_past_key_value_lengths = host_past_key_value_lengths.data_ptr(); enqueue_params.start_token_idx_sf = token_offset; if (op.isMRoPE() && mrope_position_deltas.has_value()) { enqueue_params.mrope_position_deltas = mrope_position_deltas.value().data_ptr(); } if (op.mIsSpecDecodingEnabled && op.mUseSpecDecoding) { TORCH_CHECK(spec_decoding_tensor_params.size() == 3, "Expecting 3 tensors for spec-dec mode, spec_decoding_generation_lengths, " "spec_decoding_position_offsets and spec_decoding_packed_mask."); TORCH_CHECK(spec_decoding_tensor_params[0].has_value(), "Expecting spec_decoding_generation_lengths spec-dec mode."); TORCH_CHECK(spec_decoding_tensor_params[1].has_value(), "Expecting spec_decoding_position_offsets spec-dec mode."); TORCH_CHECK( spec_decoding_tensor_params[2].has_value(), "Expecting spec_decoding_packed_mask spec-dec mode."); enqueue_params.spec_decoding_generation_lengths = spec_decoding_tensor_params[0].value().data_ptr(); enqueue_params.spec_decoding_position_offsets = spec_decoding_tensor_params[1].value().data_ptr(); enqueue_params.spec_decoding_packed_mask = spec_decoding_tensor_params[2].value().data_ptr(); enqueue_params.spec_decoding_is_generation_length_variable = true; enqueue_params.spec_decoding_max_generation_length = input_seq_length + 1; } // Current mlaGeneration will using fmha to do attention, so we don't go into enqueueGeneration if (op.isMLAEnabled()) { if (op.mUseGenFlashMLA == true) { TORCH_CHECK(block_ids_per_seq.has_value()); int const* block_ids_per_seq_ptr = static_cast(block_ids_per_seq->data_ptr()); mla_params.block_ids_per_seq = block_ids_per_seq_ptr; } mla_params.cache_seq_lens = sequence_lengths_ptr; op.mlaGeneration(mla_params, enqueue_params, stream); } else { op.enqueueGeneration(enqueue_params, stream); } { std::string const afterGenStr = "gen attention at layer " + std::to_string(op.mLayerIdx); { TLLM_CHECK_DEBUG_WITH_INFO(tensorrt_llm::runtime::utils::tensorHasInvalid(num_tokens, output.size(1), op.mType, context_buf, stream, afterGenStr) == false, "Found invalid number (NaN or Inf) in " + afterGenStr); } } } sync_check_cuda_error(stream); } }; template class Runner; template class Runner; template class Runner; #ifdef ENABLE_BF16 template class Runner<__nv_bfloat16>; template class Runner<__nv_bfloat16, __nv_fp8_e4m3>; #endif } // namespace trtllm::attention using RunnerPtr = std::shared_ptr; using torch_ext::trtllm::attention::Runner; using torch_ext::trtllm::attention::AttentionInputType; void attention_inplace(torch::Tensor q, torch::optional k, torch::optional v, torch::Tensor& output, torch::optional output_sf, std::optional out_dtype, torch::optional workspace_, torch::Tensor sequence_length, torch::Tensor host_past_key_value_lengths, torch::Tensor context_lengths, torch::Tensor host_context_lengths, torch::Tensor host_request_types, torch::optional kv_cache_block_offsets, torch::optional host_kv_cache_block_offsets, torch::optional host_kv_cache_pool_pointers, torch::optional host_kv_cache_pool_mapping, torch::optional cache_indirection, torch::optional kv_scale_orig_quant, torch::optional kv_scale_quant_orig, torch::optional out_scale, torch::optional rotary_inv_freq, torch::optional rotary_cos_sin, torch::optional latent_cache, torch::optional q_pe, torch::optional block_ids_per_seq, bool const is_fused_qkv, bool const update_kv_cache, int64_t const predicted_tokens_per_seq, int64_t const layer_idx, int64_t const num_heads, int64_t const num_kv_heads, int64_t const head_size, std::optional const tokens_per_block, int64_t const max_num_requests, int64_t const max_context_length, int64_t const attention_window_size, int64_t const sink_token_length, int64_t const beam_width, int64_t const mask_type, int64_t const quant_mode, double const q_scaling, int64_t const position_embedding_type, int64_t const rotary_embedding_dim, double const rotary_embedding_base, int64_t const rotary_embedding_scale_type, c10::ArrayRef rotary_embedding_scales, c10::ArrayRef rotary_embedding_max_position_info, bool const use_paged_context_fmha, std::optional attention_input_type, bool is_mla_enable, std::optional q_lora_rank, std::optional kv_lora_rank, std::optional qk_nope_head_dim, std::optional qk_rope_head_dim, std::optional v_head_dim, torch::optional mrope_rotary_cos_sin, torch::optional mrope_position_deltas, std::optional mla_context_paged_kv, std::optional mla_context_kv_cache_block_offsets, std::optional attention_chunk_size, std::optional softmax_stats_tensor, c10::List spec_decoding_bool_params, c10::ArrayRef> spec_decoding_tensor_params) { TLLM_LOG_TRACE("Attention op starts at layer %d", layer_idx); // Use these tensors to infer if the attention is using KV cache bool const use_kv_cache = kv_cache_block_offsets.has_value() && host_kv_cache_block_offsets.has_value() && host_kv_cache_pool_pointers.has_value() && host_kv_cache_pool_mapping.has_value(); TLLM_CHECK_WITH_INFO(is_fused_qkv, "Only fused QKV is supported now"); TLLM_CHECK_WITH_INFO(update_kv_cache, "KV cache update cannot be disabled now"); auto qkv = q; if (is_fused_qkv) { TLLM_CHECK_WITH_INFO(!k.has_value(), "The k tensor should be null if using fused QKV"); TLLM_CHECK_WITH_INFO(!v.has_value(), "The v tensor should be null if using fused QKV"); } if (!is_fused_qkv && update_kv_cache) { TLLM_CHECK_WITH_INFO(k.has_value(), "The k tensor should be provided if updating KV cache with unfused K/V"); TLLM_CHECK_WITH_INFO(v.has_value(), "The v tensor should be provided if updating KV cache with unfused K/V"); } auto const dtype = tensorrt_llm::runtime::TorchUtils::dataType(qkv.scalar_type()); bool const is_fp8_out = out_dtype.has_value() && out_dtype.value() == torch::kFloat8_e4m3fn; bool const is_fp4_out = out_dtype.has_value() && out_dtype.value() == torch::kUInt8; RunnerPtr runner; if (dtype == nvinfer1::DataType::kHALF) { if (is_fp8_out) { runner.reset(new Runner()); } else if (is_fp4_out) { runner.reset(new Runner()); } else { TLLM_CHECK(!out_dtype.has_value() || out_dtype.value() == torch::kFloat16); runner.reset(new Runner()); } } else if (dtype == nvinfer1::DataType::kFLOAT) { TLLM_CHECK(!out_dtype.has_value() || out_dtype.value() == torch::kFloat32); runner.reset(new Runner()); } #ifdef ENABLE_BF16 else if (dtype == nvinfer1::DataType::kBF16) { if (is_fp8_out) { runner.reset(new Runner<__nv_bfloat16, __nv_fp8_e4m3>()); } else if (is_fp4_out) { runner.reset(new Runner<__nv_bfloat16, __nv_fp4_e2m1>()); } else { TLLM_CHECK(!out_dtype.has_value() || out_dtype.value() == torch::kBFloat16); runner.reset(new Runner<__nv_bfloat16>()); } } #endif runner->beam_width = beam_width; runner->max_num_requests = max_num_requests; runner->attention_window_size = attention_window_size; runner->sink_token_length = sink_token_length; double const rotary_embedding_scale = rotary_embedding_scales[0]; double const rotary_embedding_short_m_scale = rotary_embedding_scales[1]; double const rotary_embedding_long_m_scale = rotary_embedding_scales[2]; int64_t const rotary_embedding_max_positions = rotary_embedding_max_position_info[0]; int64_t const rotary_embedding_original_max_positions = rotary_embedding_max_position_info[1]; auto op = std::make_shared(); op->mType = dtype; op->mFMHAForceFP32Acc = dtype == nvinfer1::DataType::kBF16; op->mFP8ContextFMHA = is_fp8_out || is_fp4_out; op->mLayerIdx = layer_idx; op->mNumHeads = num_heads; op->mNumKVHeads = num_kv_heads; op->mHeadSize = head_size; op->mMaskType = static_cast(int32_t(mask_type)); op->mKVCacheQuantMode = tensorrt_llm::common::QuantMode(uint32_t(quant_mode)); op->mUseKVCache = use_kv_cache; op->mPagedKVCache = op->mPagedKVCache && use_kv_cache; // update mPagedKVCache based on use_kv_cache op->mTokensPerBlock = tokens_per_block.value_or(0); op->mFP8GenerationMLA = false; op->mFuseFp4Quant = is_fp4_out; op->mMaxContextLength = max_context_length; op->mQScaling = q_scaling; op->mPositionEmbeddingType = static_cast(int8_t(position_embedding_type)); op->mRotaryEmbeddingDim = rotary_embedding_dim; op->mRotaryEmbeddingBase = rotary_embedding_base; op->mRotaryEmbeddingScaleType = static_cast(int8_t(rotary_embedding_scale_type)); op->mRotaryEmbeddingScale = rotary_embedding_scale; op->mRotaryEmbeddingShortMscale = rotary_embedding_short_m_scale; op->mRotaryEmbeddingLongMscale = rotary_embedding_long_m_scale; op->mRotaryEmbeddingMaxPositions = rotary_embedding_max_positions; op->mRotaryEmbeddingOriginalMaxPositions = rotary_embedding_original_max_positions; op->mPagedContextFMHA = use_paged_context_fmha; op->mAttentionChunkSize = attention_chunk_size; TORCH_CHECK(spec_decoding_bool_params.size() == 2, "Expecting 2 bools for spec-dec mode, is_spec_decoding_enabled and use_spec_decoding."); op->mIsSpecDecodingEnabled = spec_decoding_bool_params[0]; // is_spec_decoding_enabled op->mUseSpecDecoding = spec_decoding_bool_params[1]; // use_spec_decoding op->mMultiBlockMode = op->mIsSpecDecodingEnabled ? false : true; if (is_mla_enable) { // MLA does not support NVFP4 output yet. TLLM_CHECK(!is_fp4_out); TLLM_CHECK(host_kv_cache_pool_mapping.has_value()); int32_t const layer_num = host_kv_cache_pool_mapping.value().size(0); op->mIsMLAEnabled = true; op->mMLAParams = {static_cast(q_lora_rank.value()), static_cast(kv_lora_rank.value()), static_cast(qk_nope_head_dim.value()), static_cast(qk_rope_head_dim.value()), static_cast(v_head_dim.value()), static_cast(predicted_tokens_per_seq), static_cast(layer_num)}; op->mIsGenerationMLA = head_size == op->mMLAParams.kv_lora_rank + op->mMLAParams.qk_rope_head_dim; op->mFP8GenerationMLA = op->mKVCacheQuantMode.hasFp8KvCache(); // only enable flash mla on sm90 and head_size == 576 and tokens_per_block == 64 op->mUseGenFlashMLA = tensorrt_llm::common::getSMVersion() == 90 && tokens_per_block == 64; // The following two parameters are used to compute kvcache related parameters such as kvcache block_size. So // they need to be set to 1 and 512 + 64 for both context and generation. For MLA attention kernel configs, // mNumKVHeads/mHeadSize are overwritten in common/attentionOp.cpp. op->mNumKVHeads = 1; op->mHeadSize = op->mMLAParams.kv_lora_rank + op->mMLAParams.qk_rope_head_dim; } auto cache_key = std::make_tuple(op->data(), runner->data()); using CacheKey = decltype(cache_key); static std::unordered_map, hash> op_cache; if (auto it = op_cache.find(cache_key); it != op_cache.end()) { TLLM_LOG_TRACE("Attention op for layer %d is cached", layer_idx); op = it->second; } else { TLLM_LOG_TRACE( "Preparing new attention op for layer %d with cache key: %s", layer_idx, to_string(cache_key).c_str()); op->initialize(); runner->prepare(*op); op_cache[cache_key] = op; } int32_t const num_seqs = host_context_lengths.size(0); RequestType const* request_types = static_cast(host_request_types.data_ptr()); AttentionInputType attn_input_type = AttentionInputType::Mixed; if (attention_input_type.has_value()) { attn_input_type = static_cast(attention_input_type.value()); } bool const is_gen_only = attn_input_type == AttentionInputType::GenerationOnly; int32_t num_contexts = 0; // count context requests for (int32_t idx = 0; idx < num_seqs; idx++) { if (request_types[idx] != RequestType::kCONTEXT) { break; } ++num_contexts; } int32_t const num_generations = num_seqs - num_contexts; int32_t const num_tokens = qkv.size(0); int32_t const num_ctx_tokens = host_context_lengths.slice(0, 0, num_contexts).sum().item(); int32_t const num_gen_tokens = is_gen_only ? num_tokens : num_tokens - num_ctx_tokens; for (int32_t idx = num_contexts; idx < num_seqs; idx++) { TLLM_CHECK(request_types[idx] == RequestType::kGENERATION); } int32_t const max_attention_window_size = beam_width == 1 ? attention_window_size : cache_indirection.value().size(2); int64_t const workspace_size = runner->getWorkspaceSize(*op, num_tokens, max_attention_window_size, num_gen_tokens); TLLM_LOG_TRACE("Expected workspace size is %ld bytes", workspace_size); if (workspace_size >= (16l << 30)) { auto const [free_mem, total_mem] = tensorrt_llm::common::getDeviceMemoryInfo(false); if (workspace_size >= static_cast(free_mem)) { throw std::runtime_error("attention workspace size " + std::to_string(workspace_size) + " bytes, exceeds available CUDA memory " + std::to_string(free_mem) + " bytes"); } } torch::Tensor workspace; if (workspace_.has_value()) { if (workspace_.value().numel() < workspace_size) { TLLM_LOG_WARNING("Attention workspace size is not enough, increase the size from %ld bytes to %ld bytes", workspace_.value().numel(), workspace_size); workspace_.value().resize_({workspace_size}); } workspace = workspace_.value(); } else { workspace = torch::empty({workspace_size}, torch::dtype(torch::kByte).device(qkv.device())); } if ((num_contexts > 0) && (attn_input_type != AttentionInputType::GenerationOnly)) { auto seq_offset = 0; auto token_offset = 0; runner->run(*op, /*is_context=*/true, seq_offset, /*num_seqs=*/num_contexts, token_offset, /*num_tokens=*/num_ctx_tokens, predicted_tokens_per_seq, workspace, output, output_sf, qkv, sequence_length, host_past_key_value_lengths, context_lengths, host_context_lengths, kv_cache_block_offsets, host_kv_cache_block_offsets, host_kv_cache_pool_pointers, host_kv_cache_pool_mapping, cache_indirection, kv_scale_orig_quant, kv_scale_quant_orig, out_scale, rotary_inv_freq, rotary_cos_sin, latent_cache, q_pe, block_ids_per_seq, mrope_rotary_cos_sin, mrope_position_deltas, mla_context_paged_kv, mla_context_kv_cache_block_offsets, softmax_stats_tensor, spec_decoding_tensor_params); } if ((num_generations > 0) && (attn_input_type != AttentionInputType::ContextOnly)) { auto seq_offset = num_contexts; auto token_offset = is_gen_only ? 0 : num_ctx_tokens; runner->run(*op, /*is_context=*/false, seq_offset, /*num_seqs=*/num_generations, token_offset, /*num_tokens=*/num_gen_tokens, predicted_tokens_per_seq, workspace, output, output_sf, qkv, sequence_length, host_past_key_value_lengths, context_lengths, host_context_lengths, kv_cache_block_offsets, host_kv_cache_block_offsets, host_kv_cache_pool_pointers, host_kv_cache_pool_mapping, cache_indirection, kv_scale_orig_quant, kv_scale_quant_orig, out_scale, rotary_inv_freq, rotary_cos_sin, latent_cache, q_pe, block_ids_per_seq, mrope_rotary_cos_sin, mrope_position_deltas, mla_context_paged_kv, mla_context_kv_cache_block_offsets, softmax_stats_tensor, spec_decoding_tensor_params); } TLLM_LOG_TRACE("Attention op stops at layer %d", layer_idx); } bool attention_supports_nvfp4_output(int64_t const num_heads, int64_t const num_kv_heads, int64_t const head_size, std::optional const tokens_per_block, int64_t const mask_type, int64_t const quant_mode, bool const use_paged_context_fmha, bool is_mla_enable) { // Only Blackwell supports NVFP4 output. if (tensorrt_llm::common::getSMVersion() < 100) { return false; } // MLA is not supported. if (is_mla_enable) { return false; } auto op = std::make_shared(); op->mType = nvinfer1::DataType::kHALF; op->mNumHeads = num_heads; op->mNumKVHeads = num_kv_heads; op->mHeadSize = head_size; op->mMaskType = static_cast(int32_t(mask_type)); op->mKVCacheQuantMode = tensorrt_llm::common::QuantMode(uint32_t(quant_mode)); op->mFP8ContextFMHA = op->mKVCacheQuantMode.hasFp8KvCache(); op->mUseKVCache = true; op->mPagedKVCache = true; op->mTokensPerBlock = tokens_per_block.value_or(0); op->mFuseFp4Quant = true; op->mPagedContextFMHA = use_paged_context_fmha; auto cache_key = op->data(); using CacheKey = decltype(cache_key); static std::unordered_map> op_cache; if (auto it = op_cache.find(cache_key); it != op_cache.end()) { TLLM_LOG_TRACE("Attention op runtime check is cached"); return it->second; } else { TLLM_LOG_TRACE("Caching attention op runtime check with cache key: %s", to_string(cache_key).c_str()); op->initialize(); op_cache[cache_key] = op->supportsNvFp4Output(); } return op->supportsNvFp4Output(); } } // namespace torch_ext TORCH_LIBRARY_FRAGMENT(trtllm, m) { m.def( "attention_inplace(" "Tensor q" ", Tensor? k" ", Tensor? v" ", Tensor(a!) output" ", Tensor(b!)? output_sf" ", ScalarType? out_dtype" ", Tensor? workspace" ", Tensor sequence_length" ", Tensor host_past_key_value_lengths" ", Tensor context_lengths" ", Tensor host_context_lengths" ", Tensor host_request_types" ", Tensor? kv_cache_block_offsets" ", Tensor? host_kv_cache_block_offsets" ", Tensor? host_kv_cache_pool_pointers" ", Tensor? host_kv_cache_pool_mapping" ", Tensor? cache_indirection" ", Tensor? kv_scale_orig_quant" ", Tensor? kv_scale_quant_orig" ", Tensor? out_scale" ", Tensor? rotary_inv_freq" ", Tensor? rotary_cos_sin" ", Tensor? latent_cache" ", Tensor? q_pe" ", Tensor? block_ids_per_seq" ", bool is_fused_qkv" ", bool update_kv_cache" ", int predicted_tokens_per_seq" ", int layer_idx" ", int num_heads" ", int num_kv_heads" ", int head_size" ", SymInt? tokens_per_block" ", SymInt max_num_requests" ", SymInt max_context_length" ", SymInt attention_window_size" ", int sink_token_length" ", int beam_width" ", int mask_type" ", int quant_mode" ", float q_scaling" ", int position_embedding_type" ", int rotary_embedding_dim" ", float rotary_embedding_base" ", int rotary_embedding_scale_type" ", float[] rotary_embedding_scales" ", int[] rotary_embedding_max_position_info" ", bool use_paged_context_fmha" ", int? attention_input_type" ", bool is_mla_enable" ", int? q_lora_rank" ", int? kv_lora_rank" ", int? qk_nope_head_dim" ", int? qk_rope_head_dim" ", int? v_head_dim" ", Tensor? mrope_rotary_cos_sin" ", Tensor? mrope_position_deltas" ", Tensor? mla_context_paged_kv" ", Tensor? mla_context_kv_cache_block_offsets" ", int? attention_chunk_size" ", Tensor? softmax_stats_tensor" ", bool[] spec_decoding_bool_params" ", Tensor?[] spec_decoding_tensor_params" ") -> ()"); m.def("attention_supports_nvfp4_output", &torch_ext::attention_supports_nvfp4_output); } TORCH_LIBRARY_IMPL(trtllm, CUDA, m) { m.impl("attention_inplace", &torch_ext::attention_inplace); }