Skip to content

Latest commit

 

History

History
36 lines (24 loc) · 881 Bytes

File metadata and controls

36 lines (24 loc) · 881 Bytes

What's this

Container image to play with Podman-libkrun on Apple Silicon macOS

How to use

Build llama.cpp container image

make build

or

podman build . -t fedora-llama-vulkan

Run llama.cpp container

Please download a model file you like (for example Llama-3-ELYZA-JP-8B-q4_k_m.gguf) and place it in $HOME/Downloads beforehand.

make run

or

podman run --rm -ti --device /dev/dri -v ~/Downloads:/models:Z localhost/fedora-llama-vulkan main --temp 0 -m models/Llama-3-ELYZA-JP-8B-q4_k_m.gguf -b 512 -ngl 99 -p "Podmanのlibkrun providerについて教えて下さい"

References