use std::hint; use std::ops::Deref; use std::path::Path; use async_trait::async_trait; use cxx::UniquePtr; use hashbrown::HashMap; use tokenizers::Tokenizer; use tokio::sync::mpsc::{unbounded_channel, UnboundedReceiver, UnboundedSender}; use tokio::sync::TryAcquireError; use tokio::task::{spawn_blocking, JoinHandle}; use tokio::time::Instant; use tokio_stream::wrappers::UnboundedReceiverStream; use tracing::{debug, error, warn}; use text_generation_router::infer::InferError::{GenerationError, ValidationError}; use text_generation_router::infer::{Backend, GeneratedText, InferError, InferStreamResponse}; use text_generation_router::validation::ValidationError::{ EmptyInput, Grammar, TopNTokensDisabled, UnsupportedModality, }; use text_generation_router::validation::{Chunk, ValidGenerateRequest}; use text_generation_router::{FinishReason, Token}; use crate::errors::TensorRtLlmBackendError; use crate::ffi::{create_tensorrt_llm_backend, GenerationStep, TensorRtLlmBackendImpl}; use crate::utils::first_line; type InferResult = Result; /// Wrap the requests along with the channel used to stream back to the client the decoded tokens struct GenerationContext { request: ValidGenerateRequest, start: Option, queued: Instant, streamer: UnboundedSender>, } #[derive(Debug, Copy, Clone)] struct DecodedToken { id: u32, log_prob: f32, is_final: bool, } impl<'step> TryFrom<&'step GenerationStep> for DecodedToken { type Error = InferError; fn try_from(step: &'step GenerationStep) -> Result { if !step.has_error { Ok(Self { id: step.token_id, log_prob: step.log_prob, is_final: step.is_final, }) } else { Err(GenerationError(step.error_msg.clone())) } } } /// Wraps the decoded token with the channel used to stream back to the client the decoded tokens struct DecodedTokenContext { token: DecodedToken, start: Option, queued: Instant, channel: UnboundedSender>, } fn executor_status_looper( mut backend: UniquePtr, max_inflight_requests: usize, mut waiting_requests: UnboundedReceiver, post_processor_sender: UnboundedSender<(u64, InferResult)>, ) { // Track the tuple (request_id, stream) for each request let mut in_flights = HashMap::::with_capacity(max_inflight_requests * 2); // TODO: Does it need a spin-loop? 'scheduler: loop { // Is there any request pending to be scheduled? let awaiting_requests = waiting_requests.len(); for _ in 0..awaiting_requests { // Retrieve all the requests if let Some(mut ctx) = waiting_requests.blocking_recv() { // Submit all the request to the executor and move the context to the in-flight tracker let request = &ctx.request; let generation_params = &request.parameters; let stopping_params = &request.stopping_parameters; let input_ids = request.input_ids.as_deref(); // Submit to the TensorRT-LLM executor for scheduling match backend.pin_mut().submit( &input_ids.unwrap(), // This is checked beforehand in validate() stopping_params.max_new_tokens, generation_params.top_k as i32, generation_params.top_p, generation_params.temperature, generation_params.repetition_penalty, generation_params.frequency_penalty, generation_params.seed, ) { Ok(request_id) => { // Insert the context linked to the generated request id in the tracker debug!("[in-flight] Added {}", request_id); ctx.start = Some(Instant::now()); in_flights.insert(request_id, ctx); } Err(e) => { // Return to the caller let what = e.to_string(); error!(error = what.as_str(), "Failed to schedule request"); let err = Err(InferError::Overloaded(TryAcquireError::NoPermits)); if let Err(_) = ctx.streamer.send(err) { error!("Failed to send back error to the client"); } } }; } } if backend.num_responses_ready() > 0 { match backend.pin_mut().pull_tokens() { Ok(responses) => { // Iterate through all the decoded token for step in responses.deref() { if let Some(ctx) = in_flights.get(&step.request_id) { // Remove from tracked requests let parcel = DecodedToken::try_from(step).map(|dt| DecodedTokenContext { token: dt, start: ctx.start, queued: ctx.queued, channel: ctx.streamer.clone(), }); // Submit the work to p:the post_processor let posted = post_processor_sender.send((step.request_id, parcel)); if posted.is_err() || step.is_final { debug!("Removing {}", step.request_id); let _ = in_flights.remove(&step.request_id); } } else { warn!("Untracked request {}", step.request_id,); } } } Err(ref err) => { error!("Failed to get responses from the executor: {}.", err.what()); break 'scheduler; } } } // Hint the CPU we are spin-locking hint::spin_loop(); } } fn post_processor_looper( tokenizer: Tokenizer, max_inflight_requests: usize, mut decoded_tokens: UnboundedReceiver<(u64, InferResult)>, ) { let mut states: HashMap> = HashMap::with_capacity(max_inflight_requests * 2); 'post_processor: loop { if decoded_tokens.is_closed() { warn!("Post processor IPC is closed, loop will exit now."); break 'post_processor; } if let Some((request_id, decoded)) = decoded_tokens.blocking_recv() { match decoded { Ok(ctx) => { states .entry(request_id) .and_modify(|s| s.push(*&ctx.token.id)) .or_insert_with(|| { let mut state = Vec::with_capacity(MAX_NUM_TOKENS); state.push(*&ctx.token.id); state }); let out = match tokenizer.decode(&[ctx.token.id], false) { Ok(text) => { let is_special = tokenizer.get_added_vocabulary().is_special_token(&text); let token = Token { id: ctx.token.id, text, logprob: ctx.token.log_prob, special: is_special, }; let out = if !ctx.token.is_final { InferStreamResponse::Intermediate { token, top_tokens: vec![], } } else { let tokens = states.remove(&request_id).unwrap(); let text = tokenizer.decode(&tokens, true); let generated_text = GeneratedText { text: text.unwrap(), generated_tokens: tokens.len() as u32, finish_reason: FinishReason::EndOfSequenceToken, seed: None, }; InferStreamResponse::End { token, top_tokens: vec![], generated_text, start: ctx.start.unwrap(), queued: ctx.queued, } }; Ok(out) } Err(err) => Err(GenerationError(err.to_string())), }; if let Err(_) = ctx.channel.send(out) { warn!("Failed to send decoded token back to the user") } } Err(_err) => { todo!("what do we do?") } } } } } fn ensure_paths_exist, PP: AsRef>( engine_folder: P, executor_worker_path: PP, ) -> Result<(String, String), TensorRtLlmBackendError> { // Retrieve paths as &str for the backend creation let engine_folder = engine_folder.as_ref(); let executor_worker_path = executor_worker_path.as_ref(); // Ensure the engine folder exists if !engine_folder.exists() { let err = TensorRtLlmBackendError::EngineFolderDoesntExists(engine_folder.to_path_buf()); error!("Path validation failed: {}", err,); return Err(err); } // Ensure executor worker binary exists if !executor_worker_path.exists() { let err = TensorRtLlmBackendError::ExecutorWorkerNotFound(engine_folder.to_path_buf()); error!("Path validation failed: {}", err,); return Err(err); } let engine_folder = String::from( engine_folder .to_str() .expect("Failed to convert engine_folder to valid UTF-8"), ); let executor_worker_path = String::from( executor_worker_path .to_str() .expect("Failed to convert executor_worker_path to valid UTF-8"), ); Ok((engine_folder, executor_worker_path)) } unsafe impl Send for TensorRtLlmBackendImpl {} pub struct TensorRtLlmBackendV2 { executor_looper: JoinHandle<()>, post_processor_looper: JoinHandle<()>, executor: UnboundedSender, } impl TensorRtLlmBackendV2 { pub fn new + Send, PP: AsRef + Send>( tokenizer: Tokenizer, engine_folder: P, executor_worker_path: PP, max_inflight_requests: usize, ) -> Result { let (engine_folder, executor_worker_path) = ensure_paths_exist(engine_folder, executor_worker_path)?; // Allocate the IPC layer to communicate with the backend let (executor_sender, executor_receiver) = unbounded_channel(); let (post_processor_sender, post_processor_receiver) = unbounded_channel(); // Create the FFI backend let backend = create_tensorrt_llm_backend(&engine_folder, &executor_worker_path) .map_err(|e| TensorRtLlmBackendError::Runtime(first_line(e.what(), "Unknown error")))?; // Executor looper is responsible for scheduling and pulling requests state at regular interval let executor_looper = spawn_blocking(move || { executor_status_looper( backend, max_inflight_requests, executor_receiver, post_processor_sender, ) }); // Post processor looper is responsible from receiving a bunch of tokens, decoding them and sending them back to the user let post_processor_looper = spawn_blocking(move || { post_processor_looper::<256>(tokenizer, max_inflight_requests, post_processor_receiver) }); Ok(TensorRtLlmBackendV2 { executor_looper, post_processor_looper, executor: executor_sender, }) } fn validate(request: &ValidGenerateRequest) -> InferResult<()> { if request.input_ids.is_none() { return Err(ValidationError(UnsupportedModality("No token provided"))); } if request.top_n_tokens > 1 { return Err(ValidationError(TopNTokensDisabled)); } // TODO: Is it really needed? How can it be validated before? if request.parameters.grammar.is_some() { return Err(ValidationError(Grammar)); } match request.inputs.len() { 0 => Err(ValidationError(EmptyInput)), 2.. => Err(GenerationError( "TensorRT-LLM backend don't support multi-chunk".into(), )), 1 => match request.inputs.first().expect("Single item-chunk") { Chunk::Text(_) => Ok(()), Chunk::Image(_) => Err(ValidationError(UnsupportedModality("image"))), }, } } } #[async_trait] impl Backend for TensorRtLlmBackendV2 { fn schedule( &self, inner: ValidGenerateRequest, ) -> Result>, InferError> { Self::validate(&inner)?; // Open-up the stream to send tokens let (streamer, receiver) = unbounded_channel::>(); // Send the context to the executor for scheduling let queued = Instant::now(); match self.executor.send(GenerationContext { request: inner, start: None, queued, streamer, }) { Ok(_) => Ok(UnboundedReceiverStream::new(receiver)), Err(_) => Err(GenerationError( "Failed to submit request to the backend".into(), )), } } async fn health(&self, _: bool) -> bool { !self.executor_looper.is_finished() & !self.post_processor_looper.is_finished() } }