docs: added a note about using OpenCl with Adreno 810 (llama/25786)

This commit is contained in:
akleine 2026-07-16 21:44:45 +02:00 committed by Georgi Gerganov
parent 070e57261c
commit 5e5148f989
No known key found for this signature in database
GPG Key ID: 449E073F9DC10735
1 changed files with 2 additions and 1 deletions

View File

@ -264,7 +264,8 @@ static ADRENO_GPU_GEN get_adreno_gpu_gen(const char *device_name) {
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, "850")) {
return ADRENO_GPU_GEN::A8X;