You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor: add interior mutability to tensorrt_llm_backend_t
Make `tensorrt_llm_backend_t` interior mutable by marking the `inner_` struct
as a `mutable` field, so we can make the methods `const`.
This makes the pointer accessible from multiple threads at the Rust
side without wrapping a Mutex. The underlying
tensorrt_llm::executor::Executor already contains a mutex.
0 commit comments