Views
No views yet
comgr/ - Precompiled LLVM kernel cache (~94MB)libggml-hip.so - HIP-accelerated GGML library compiled for gfx1151libggml*.so - Supporting GGML librarieslibllama.so - llama.cpp librarylibmtmd.so - Multi-modal libraryCMAKE_ARGS="-DGGML_HIPBLAS=on" AMDGPU_TARGETS="gfx1151" pip install llama-cpp-python1# Copy comgr cache (saves ~50 mins of JIT compilation!)
2cp -r comgr ~/.cache/
3
4# Optionally replace the compiled libs (must match llama-cpp-python version)
5# cp lib*.so ~/.local/lib/python3.x/site-packages/llama_cpp/lib/1export HSA_OVERRIDE_GFX_VERSION=11.5.1
2export AMDGPU_TARGETS=gfx1151