#include "llmodel.h" #include "dlhandle.h" #include #include #include #include #include #include static bool requires_avxonly() { #ifdef __x86_64__ #ifndef _MSC_VER return !__builtin_cpu_supports("avx2"); #else int cpuInfo[4]; __cpuidex(cpuInfo, 7, 0); return !(cpuInfo[1] & (1 << 5)); #endif #else return false; // Don't know how to handle non-x86_64 #endif } LLModel::Implementation::Implementation(Dlhandle &&dlhandle_) : dlhandle(new Dlhandle(std::move(dlhandle_))) { auto get_model_type = dlhandle->get("get_model_type"); assert(get_model_type); modelType = get_model_type(); auto get_build_variant = dlhandle->get("get_build_variant"); assert(get_build_variant); buildVariant = get_build_variant(); magicMatch = dlhandle->get("magic_match"); assert(magicMatch); construct_ = dlhandle->get("construct"); assert(construct_); } LLModel::Implementation::Implementation(Implementation &&o) : construct_(o.construct_) , modelType(o.modelType) , buildVariant(o.buildVariant) , magicMatch(o.magicMatch) , dlhandle(o.dlhandle) { o.dlhandle = nullptr; } LLModel::Implementation::~Implementation() { if (dlhandle) delete dlhandle; } bool LLModel::Implementation::isImplementation(const Dlhandle &dl) { return dl.get("is_g4a_backend_model_implementation"); } const std::vector &LLModel::implementationList() { // NOTE: allocated on heap so we leak intentionally on exit so we have a chance to clean up the // individual models without the cleanup of the static list interfering static auto* libs = new std::vector([] () { std::vector fres; auto search_in_directory = [&](const std::filesystem::path& path) { // Iterate over all libraries for (const auto& f : std::filesystem::directory_iterator(path)) { const std::filesystem::path& p = f.path(); if (p.extension() != LIB_FILE_EXT) continue; // Add to list if model implementation try { Dlhandle dl(p.string()); if (!Implementation::isImplementation(dl)) { continue; } fres.emplace_back(Implementation(std::move(dl))); } catch (...) {} } }; const char *custom_impl_lookup_path = getenv("GPT4ALL_IMPLEMENTATIONS_PATH"); search_in_directory(custom_impl_lookup_path?custom_impl_lookup_path:"."); #if defined(__APPLE__) search_in_directory("../../../"); #endif return fres; }()); // Return static result return *libs; } const LLModel::Implementation* LLModel::implementation(std::ifstream& f, const std::string& buildVariant) { for (const auto& i : implementationList()) { f.seekg(0); if (!i.magicMatch(f)) continue; if (buildVariant != i.buildVariant) continue; return &i; } return nullptr; } LLModel *LLModel::construct(const std::string &modelPath, std::string buildVariant) { //TODO: Auto-detect CUDA/OpenCL if (buildVariant == "auto") { if (requires_avxonly()) { buildVariant = "avxonly"; } else { buildVariant = "default"; } } // Read magic std::ifstream f(modelPath, std::ios::binary); if (!f) return nullptr; // Get correct implementation auto impl = implementation(f, buildVariant); if (!impl) return nullptr; f.close(); // Construct and return llmodel implementation return impl->construct(); }