Skip to content
Closed
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
23 changes: 23 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -643,6 +643,29 @@ Building the program with BLAS support may lead to some performance improvements
# ggml_vulkan: Using Intel(R) Graphics (ADL GT2) | uma: 1 | fp16: 1 | warp size: 32
```

- #### Vulkan Kompute

Please see the following PR for more details: [#4456](https://github.com/ggerganov/llama.cpp/pull/4456)

- ##### Installing the Submodule

If you have cloned this repository without the `--recursive` flag, install the kompute submodule like so:

```sh
git submodule init
git submodule update
```

- ##### Building with Vulkan Kompute

- Build with cmake:
```sh
mkdir build
cd build
cmake .. -DLLAMA_KOMPUTE=ON
cmake --build . --config Release
```

### Prepare Data & Run

```bash
Expand Down