Fix trtllm lint.

This commit is contained in:
Nicolas Patry 2024-07-30 16:21:07 +02:00
parent e3418c3340
commit db17050c22
No known key found for this signature in database
GPG Key ID: E939E8CC91A1C674
6 changed files with 6 additions and 6 deletions

View File

@ -23,4 +23,4 @@ log = { version = "0.4", features = [] }
[build-dependencies]
cmake = "0.1"
cxx-build = { version = "1.0", features = ["parallel"] }
pkg-config = "0.3"
pkg-config = "0.3"

View File

@ -43,4 +43,4 @@ sequenceDiagram
end
end
```
```

View File

@ -2,4 +2,4 @@ fetchcontent_declare(
json
URL https://github.com/nlohmann/json/releases/download/v3.11.3/json.tar.xz
)
fetchcontent_makeavailable(json)
fetchcontent_makeavailable(json)

View File

@ -118,4 +118,4 @@ namespace huggingface::tgi::backends {
}
#endif //TGI_TRTLLM_BACKEND_H
#endif //TGI_TRTLLM_BACKEND_H

View File

@ -143,4 +143,4 @@ std::vector<tle::Response> huggingface::tgi::backends::TensorRtLlmBackend::Poll(
void huggingface::tgi::backends::TensorRtLlmBackend::Shutdown() {
SPDLOG_INFO("Shutting down executor");
executor.shutdown();
}
}

View File

@ -11,4 +11,4 @@ TEST_CASE("Load TRTLLM Engine on the TGI Backend", "[trtllm][engine][load]") {
spdlog::info("Loading config from: {}", absolute(engines).string());
huggingface::tgi::backends::TensorRtLlmBackend backend(engines, executor);
}
}