hf_text-generation-inference/backends/llamacpp/build.rs

109 lines
3.9 KiB
Rust
Raw Normal View History

2024-10-04 02:42:31 -06:00
use cxx_build::CFG;
use std::env;
use std::path::{Path, PathBuf};
2024-10-04 02:42:31 -06:00
2024-10-21 01:14:51 -06:00
const CMAKE_LLAMA_CPP_DEFAULT_CUDA_ARCHS: &str = "75-real;80-real;86-real;89-real;90-real";
const CMAKE_LLAMA_CPP_TARGET: &str = "tgi_llamacpp_backend_impl";
const CMAKE_LLAMA_CPP_FFI_TARGET: &str = "tgi_llamacpp_backend";
2024-10-04 02:42:31 -06:00
const MPI_REQUIRED_VERSION: &str = "4.1";
const BACKEND_DEPS: [&str; 2] = [CMAKE_LLAMA_CPP_TARGET, CMAKE_LLAMA_CPP_FFI_TARGET];
2024-10-04 02:42:31 -06:00
macro_rules! probe {
($name: expr, $version: expr) => {
if let Err(_) = pkg_config::probe_library($name) {
pkg_config::probe_library(&format!("{}-{}", $name, $version))
.expect(&format!("Failed to locate {}", $name));
}
};
}
fn build_backend(
is_debug: bool,
opt_level: &str,
out_dir: &Path,
install_path: &PathBuf,
) -> PathBuf {
2024-10-21 01:14:51 -06:00
let build_cuda = option_env!("LLAMA_CPP_BUILD_CUDA").unwrap_or("OFF");
let cuda_archs =
option_env!("LLAMA_CPP_TARGET_CUDA_ARCHS").unwrap_or(CMAKE_LLAMA_CPP_DEFAULT_CUDA_ARCHS);
2024-10-04 02:42:31 -06:00
let _ = cmake::Config::new(".")
.uses_cxx11()
.generator("Ninja")
.profile(match is_debug {
true => "Debug",
false => "Release",
})
.env("OPT_LEVEL", opt_level)
.define("CMAKE_INSTALL_PREFIX", &install_path)
2024-10-21 01:14:51 -06:00
.define("LLAMA_CPP_BUILD_CUDA", build_cuda)
.define("LLAMA_CPP_TARGET_CUDA_ARCHS", cuda_archs)
2024-10-04 02:42:31 -06:00
.build();
let lib_path = install_path.join("lib64");
println!("cargo:rustc-link-search=native={}", lib_path.display());
2024-10-04 02:42:31 -06:00
let deps_folder = out_dir.join("build").join("_deps");
deps_folder
}
fn build_ffi_layer(deps_folder: &Path, install_prefix: &Path) {
println!("cargo:warning={}", deps_folder.display());
2024-10-04 02:42:31 -06:00
CFG.include_prefix = "backends/llamacpp";
cxx_build::bridge("src/lib.rs")
.static_flag(true)
2024-10-24 01:56:40 -06:00
.std("c++23")
.include(deps_folder.join("spdlog-src").join("include")) // Why spdlog doesnt install headers?
// .include(deps_folder.join("fmt-src").join("include")) // Why spdlog doesnt install headers?
// .include(deps_folder.join("llama-src").join("include")) // Why spdlog doesnt install headers?
.include(deps_folder.join("llama-src").join("ggml").join("include")) // Why spdlog doesnt install headers?
.include(deps_folder.join("llama-src").join("common").join("include")) // Why spdlog doesnt install headers?
.include(install_prefix.join("include"))
.include("csrc")
.file("csrc/ffi.hpp")
.compile(CMAKE_LLAMA_CPP_FFI_TARGET);
2024-10-04 02:42:31 -06:00
}
fn main() {
// Misc variables
let out_dir = PathBuf::from(env::var("OUT_DIR").unwrap());
let build_profile = env::var("PROFILE").unwrap();
let (is_debug, opt_level) = match build_profile.as_ref() {
"debug" => (true, "0"),
_ => (false, "3"),
};
let install_path = env::var("CMAKE_INSTALL_PREFIX")
.map(|val| PathBuf::from(val))
.unwrap_or(out_dir.join("dist"));
2024-10-04 02:42:31 -06:00
// Build the backend
let deps_path = build_backend(is_debug, opt_level, out_dir.as_path(), &install_path);
2024-10-04 02:42:31 -06:00
// Build the FFI layer calling the backend above
build_ffi_layer(&deps_path, &install_path);
2024-10-04 02:42:31 -06:00
// Emit linkage search path
probe!("ompi", MPI_REQUIRED_VERSION);
// Backend
BACKEND_DEPS.iter().for_each(|name| {
println!("cargo:rustc-link-lib=static={}", name);
});
// Linkage info
println!("cargo:rustc-link-search=native={}", out_dir.display());
println!("cargo:rustc-link-lib=static=fmtd");
println!("cargo:rustc-link-lib=static=spdlogd");
println!("cargo:rustc-link-lib=static=common");
println!("cargo:rustc-link-lib=dylib=ggml");
println!("cargo:rustc-link-lib=dylib=llama");
// Rerun if one of these file change
println!("cargo:rerun-if-changed=CMakeLists.txt");
println!("cargo:rerun-if-changed=csrc/backend.hpp");
println!("cargo:rerun-if-changed=csrc/backend.cpp");
println!("cargo:rerun-if-changed=csrc/ffi.hpp");
2024-10-04 02:42:31 -06:00
}