mirror of
https://github.com/ggml-org/llama.cpp.git
synced 2026-07-21 02:05:51 +00:00
docs: added a note about using OpenCl with Adreno 810 (#25786)
This commit is contained in:
@@ -47,6 +47,7 @@ The llama.cpp OpenCL backend is designed to enable llama.cpp on **Qualcomm Adren
|
|||||||
| Adreno GPU | Status |
|
| Adreno GPU | Status |
|
||||||
|:-------------------------------------:|:-------:|
|
|:-------------------------------------:|:-------:|
|
||||||
| Adreno 750 (Snapdragon 8 Gen 3) | Support |
|
| Adreno 750 (Snapdragon 8 Gen 3) | Support |
|
||||||
|
| Adreno 810 (Snapdragon 7s Gen 3) | Support |
|
||||||
| Adreno 830 (Snapdragon 8 Elite) | Support |
|
| Adreno 830 (Snapdragon 8 Elite) | Support |
|
||||||
| Adreno 840 (Snapdragon 8 Elite Gen 5) | Support |
|
| Adreno 840 (Snapdragon 8 Elite Gen 5) | Support |
|
||||||
| Adreno X1-85 (Snapdragon X Elite) | Support |
|
| Adreno X1-85 (Snapdragon X Elite) | Support |
|
||||||
|
|||||||
@@ -264,7 +264,8 @@ static ADRENO_GPU_GEN get_adreno_gpu_gen(const char *device_name) {
|
|||||||
return ADRENO_GPU_GEN::A7X;
|
return ADRENO_GPU_GEN::A7X;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (strstr(device_name, "830") ||
|
if (strstr(device_name, "810") ||
|
||||||
|
strstr(device_name, "830") ||
|
||||||
strstr(device_name, "840") ||
|
strstr(device_name, "840") ||
|
||||||
strstr(device_name, "850")) {
|
strstr(device_name, "850")) {
|
||||||
return ADRENO_GPU_GEN::A8X;
|
return ADRENO_GPU_GEN::A8X;
|
||||||
|
|||||||
Reference in New Issue
Block a user