mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2025-01-16 19:09:05 +01:00
794b162a46
* whisper : add integer quantization support * examples : add common-ggml + prepare to add "quantize" tool * whisper : quantization tool ready * whisper : fix F32 support * whisper : try to fix shared lib linkage * wasm : update quantized models to Q5 * bench.wasm : remove "medium" button * bench.wasm : fix custom model button * ggml : add Q5_0 and Q5_1 WASM SIMD * wasm : add quantized models to all WASM examples * wasm : bump DB version number to 2 * talk-llama : update example to latest llama.cpp * node : increase test timeout to 10s * readme : add information for model quantization * wasm : add links to other examples
11 lines
482 B
Bash
Executable File
11 lines
482 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cp -rpv ../ggml/src/ggml.c ./ggml.c
|
|
cp -rpv ../ggml/src/ggml-cuda.cu ./ggml-cuda.cu
|
|
cp -rpv ../ggml/src/ggml-cuda.h ./ggml-cuda.h
|
|
cp -rpv ../ggml/include/ggml/ggml.h ./ggml.h
|
|
cp -rpv ../ggml/examples/common.h ./examples/common.h
|
|
cp -rpv ../ggml/examples/common.cpp ./examples/common.cpp
|
|
cp -rpv ../ggml/examples/common-ggml.h ./examples/common-ggml.h
|
|
cp -rpv ../ggml/examples/common-ggml.cpp ./examples/common-ggml.cpp
|