Skip to content

Commit 5edbacd

Browse files
committed
fix tools (+3 squashed commit)
Squashed commit: [95a489ee] fix tools build [1d3d3451] add accelerate [2837705] edit a line
1 parent 11f993c commit 5edbacd

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/kcpp-build-release-win-full-cu12.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
- name: Generate VK Instructions
8989
id: gen_vk_instructions
9090
run: |
91-
echo "If you cannot compile vulkan shaders yourself with glslc, you can manually patch in precompiled vulkan shader source files. Copy these 2 files to the ggml/src directory before building." > vulkan-readme.txt
91+
echo "If you cannot compile vulkan shaders yourself with glslc, you can manually patch in precompiled vulkan shader source files. Copy ggml-vulkan-shaders.cpp and ggml-vulkan-shaders.hpp to the ggml/src subdirectory in KoboldCpp source files before building." > vulkan-readme.txt
9292
9393
- name: Save Standalone Vulkan Shaders
9494
uses: actions/upload-artifact@v4

examples/gguf-split/gguf-split.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include "ggml.h"
22
#include "gguf.h"
33
#include "llama.h"
4-
#include "common.h"
4+
#include "common/common.h"
55
#include "build-info.h"
66

77
#include <algorithm>

examples/outetts/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ You can also create your own cloned speaker voice.
1616
To do that, you will need Python 3.10+ with the `outetts` package installed. You can install it with this commands:
1717
```
1818
pip install outetts --no-deps
19-
pip install scipy einops pyyaml huggingface-hub encodec matplotlib transformers pytorch-lightning tensorboardX soundfile numpy jsonargparse torchcrepe librosa inflect loguru polars natsort tqdm sounddevice mecab-python3 unidic-lite uroman openai-whisper pygame
19+
pip install scipy einops pyyaml huggingface-hub encodec matplotlib transformers pytorch-lightning tensorboardX soundfile numpy jsonargparse torchcrepe librosa inflect loguru polars natsort tqdm sounddevice mecab-python3 unidic-lite uroman openai-whisper pygame accelerate
2020
```
2121
Then after that, obtain a wav file containing a sample of the voice you want to clone.
2222
Modify the [voice_cloning.py](voice_cloning.py) script with your input audio file, and let it generate the JSON.

examples/quantize/quantize.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#include "build-info.h"
2-
#include "common.h"
2+
#include "common/common.h"
33
#include "llama.h"
44

55
#include <cstdio>

0 commit comments

Comments
 (0)