This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| - | |
| -- | |
| --- | |
| ---- | |
| # IMMIGRATION | |
| ---- | |
| the following metrics represent immigration in a country in a 0-9 scale, 0 is always low | |
| high volume immigration = 9 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| install_llamacpp() | |
| { | |
| sudo apt install -y build-essential git cmake ninja-build pkg-config vulkan-tools mesa-vulkan-drivers libvulkan-dev | |
| sudo apt install -y glslc glslang-tools spirv-tools vulkan-tools | |
| cd $HOME | |
| git clone https://github.com/ggerganov/llama.cpp.git | |
| cd llama.cpp | |
| cmake -B build -DGGML_VULKAN=ON -DLLAMA_CURL=OFF -DCMAKE_BUILD_TYPE=Release -G Ninja | |
| cmake --build build -j | |
| } |