chore(trtllm): fmt

This commit is contained in:
Morgan Funtowicz 2024-10-21 09:38:51 +02:00
parent e3bce407be
commit 85c03e33a9
2 changed files with 1 additions and 2 deletions

View File

@ -84,7 +84,7 @@ fn build_backend(is_debug: bool, opt_level: &str, out_dir: &PathBuf) -> (PathBuf
fn build_ffi_layer(deps_folder: &PathBuf, is_debug: bool) {
let ndebug = match is_debug {
true => "1",
false => "0"
false => "0",
};
CFG.include_prefix = "backends/trtllm";

View File

@ -65,5 +65,4 @@ mod ffi {
self: Pin<&mut TensorRtLlmBackendImpl>,
) -> Result<UniquePtr<CxxVector<GenerationStep>>>;
}
}