Function mmap_supported

Source
pub fn mmap_supported() -> bool
Expand description

is memory mapping supported according to llama.cpp

let mmap_supported = mmap_supported();
if mmap_supported {
  println!("mmap_supported!");
}