mirror of
https://github.com/huggingface/text-generation-inference.git
synced 2025-10-08 22:45:23 +00:00
9 lines
255 B
C++
9 lines
255 B
C++
#include <spdlog/spdlog.h>
|
|
#include <fmt/std.h>
|
|
|
|
#include "backend.h"
|
|
|
|
huggingface::tgi::backends::TensorRtLlmBackend::TensorRtLlmBackend(const std::filesystem::path &engineFolder) {
|
|
SPDLOG_INFO(FMT_STRING("Loading engines from {}"), engineFolder);
|
|
}
|