Skip to content

Commit

Permalink
opencl: update log message for unsupported GPUs
Browse files Browse the repository at this point in the history
  • Loading branch information
max-krasnyansky committed Dec 13, 2024
1 parent db28885 commit c8f46be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ggml/src/ggml-opencl/ggml-opencl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ static ggml_backend_opencl_context * ggml_cl2_init(ggml_backend_dev_t dev) {
} else if (strstr(default_device->name, "Intel")) {
backend_ctx->gpu_family = GPU_FAMILY::INTEL;
} else {
GGML_LOG_ERROR("Unknown GPU: %s\n", default_device->name);
GGML_LOG_ERROR("Unsupported GPU: %s\n", default_device->name);
backend_ctx->gpu_family = GPU_FAMILY::UNKNOWN;
return backend_ctx;
}
Expand Down

0 comments on commit c8f46be

Please sign in to comment.