-
Notifications
You must be signed in to change notification settings - Fork 9.7k
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
[SYCL] Update rpc-server.cpp to include SYCL backend #7682
Conversation
Draft PR to address inclusion of SYCL backend for RPC server
@@ -81,6 +85,14 @@ static ggml_backend_t create_backend() { | |||
} | |||
#endif | |||
|
|||
#elif GGML_USE_SYCL |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this will give a compile error if you don't remove the #endif
on line 86
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should be resolved now!
Does this really work? The SYCL backend has extras that are initialized during |
It's currently failing - see #7718, although I suspect that issue is only one of a number possibly, having spent a few hours trying to get it working and seeing that similar issues have persisted with whisper.cpp for the last couple of months |
PR to address inclusion of SYCL backend for RPC server