├── .gitattributes ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── convert_safetensors_to_gguf.py ├── demo ├── 2d-rope.cpp ├── basic.cpp ├── dyt-rms.cpp ├── fastvlm.cpp ├── kyutai-mimi.cpp ├── random.cpp ├── safetensors.cpp ├── svd.cpp ├── ultravox-encoder.cpp └── whisper-encoder.cpp ├── ggml-easy.h └── models └── whisper-mel-filters.gguf /.gitattributes: -------------------------------------------------------------------------------- 1 | *.gguf binary 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxson/ggml-easy/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxson/ggml-easy/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxson/ggml-easy/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxson/ggml-easy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxson/ggml-easy/HEAD/README.md -------------------------------------------------------------------------------- /convert_safetensors_to_gguf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxson/ggml-easy/HEAD/convert_safetensors_to_gguf.py -------------------------------------------------------------------------------- /demo/2d-rope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxson/ggml-easy/HEAD/demo/2d-rope.cpp -------------------------------------------------------------------------------- /demo/basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxson/ggml-easy/HEAD/demo/basic.cpp -------------------------------------------------------------------------------- /demo/dyt-rms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxson/ggml-easy/HEAD/demo/dyt-rms.cpp -------------------------------------------------------------------------------- /demo/fastvlm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxson/ggml-easy/HEAD/demo/fastvlm.cpp -------------------------------------------------------------------------------- /demo/kyutai-mimi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxson/ggml-easy/HEAD/demo/kyutai-mimi.cpp -------------------------------------------------------------------------------- /demo/random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxson/ggml-easy/HEAD/demo/random.cpp -------------------------------------------------------------------------------- /demo/safetensors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxson/ggml-easy/HEAD/demo/safetensors.cpp -------------------------------------------------------------------------------- /demo/svd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxson/ggml-easy/HEAD/demo/svd.cpp -------------------------------------------------------------------------------- /demo/ultravox-encoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxson/ggml-easy/HEAD/demo/ultravox-encoder.cpp -------------------------------------------------------------------------------- /demo/whisper-encoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxson/ggml-easy/HEAD/demo/whisper-encoder.cpp -------------------------------------------------------------------------------- /ggml-easy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxson/ggml-easy/HEAD/ggml-easy.h -------------------------------------------------------------------------------- /models/whisper-mel-filters.gguf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngxson/ggml-easy/HEAD/models/whisper-mel-filters.gguf --------------------------------------------------------------------------------