Skip to content

add vulkan kompute section #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
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