mirror of
https://gitlab.com/niansa/libjustlm.git
synced 2025-03-06 20:49:17 +01:00
26 lines
582 B
C++
26 lines
582 B
C++
#include "justlm_mpt.hpp"
|
|
#include "justlm.hpp"
|
|
|
|
#include <string>
|
|
#include <string_view>
|
|
#include <fstream>
|
|
#include <cstdint>
|
|
|
|
|
|
|
|
extern "C" {
|
|
const LM::Implementation *get_justlm_implementation() {
|
|
static LM::Implementation fres{false};
|
|
return &fres;
|
|
}
|
|
|
|
bool magic_match(std::istream& f) {
|
|
uint32_t magic;
|
|
f.read(reinterpret_cast<char*>(&magic), sizeof(magic));
|
|
return magic == 0x67676d6d;
|
|
}
|
|
|
|
LM::Inference *construct(const std::string &weights_path, std::ifstream& f, const LM::Inference::Params &p) {
|
|
return new LM::MPTInference(weights_path, f, p);
|
|
}
|
|
}
|