mirror of
https://github.com/huggingface/text-generation-inference.git
synced 2025-04-19 13:52:07 +00:00
20 lines
286 B
C++
20 lines
286 B
C++
//
|
|
// Created by mfuntowicz on 9/25/24.
|
|
//
|
|
|
|
#ifndef TEXT_GENERATION_INFERENCE_TGICCL_H
|
|
#define TEXT_GENERATION_INFERENCE_TGICCL_H
|
|
|
|
#include <optional>
|
|
|
|
#include <nvml.h>
|
|
|
|
#include "TgiCclBackend.hpp"
|
|
|
|
namespace huggingface::tgi::tgiccl
|
|
{
|
|
|
|
}
|
|
|
|
#endif //TEXT_GENERATION_INFERENCE_TGICCL_H
|