Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions kt-kernel/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -723,6 +723,24 @@ pip install .

## Error Troubleshooting

### Missing submodule CMakeLists.txt

If CMake reports that `third_party/pybind11` or `third_party/llama.cpp` does not contain a
`CMakeLists.txt`, the checkout is missing git submodules. Reinitialize them from the repository
root, then rebuild:

```bash
git submodule update --init --recursive
cd kt-kernel
./install.sh build
```

When cloning a fresh copy, prefer:

```bash
git clone --recursive https://github.com/kvcache-ai/ktransformers.git
```

### CUDA Not Found

```
Expand Down