text-generation-inference/backends/trtllm/src/lib.rs

12 lines
209 B
Rust
Raw Normal View History

mod backend;
#[cxx::bridge(namespace = "huggingface::tgi::backends")]
mod ffi {
unsafe extern "C++" {
include!("backends/trtllm/include/backend.h");
type TensorRtLlmBackendImpl;
}
}