We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99613cb commit dc8c53cCopy full SHA for dc8c53c
1 file changed
.github/workflows/build-quantize.yml
@@ -31,11 +31,18 @@ jobs:
31
- name: Clone
32
uses: actions/checkout@v6
33
34
+ - name: ccache
35
+ uses: ggml-org/ccache-action@v1.2.21
36
+ with:
37
+ key: quantize-ubuntu-22
38
+ evict-old-files: 1d
39
+ save: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
40
+
41
- name: Test quantize
42
env:
43
HF_TOKEN: ${{ secrets.HF_TOKEN }}
44
run: |
45
./models/download-ggml-model.sh tiny.en
- cmake -B build
46
+ cmake -B build -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache
47
cmake --build build --config Release
48
./build/bin/whisper-quantize models/ggml-tiny.en.bin models/ggml-tiny.en-q4_0.bin q4_0
0 commit comments