We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82ce602 commit a20dde3Copy full SHA for a20dde3
ggml/src/ggml-sycl/ggml-sycl.cpp
@@ -4639,10 +4639,9 @@ static ggml_backend_dev_t ggml_backend_sycl_reg_get_device(ggml_backend_reg_t re
4639
static void *ggml_backend_sycl_reg_get_proc_address(ggml_backend_reg_t reg, const char *name) {
4640
GGML_UNUSED(reg);
4641
4642
- // TODO: update to the current function signature
4643
- //if (strcmp(name, "ggml_backend_split_buffer_type") == 0) {
4644
- // return (void *)ggml_backend_sycl_split_buffer_type;
4645
- //}
+ if (strcmp(name, "ggml_backend_split_buffer_type") == 0) {
+ return (void *)ggml_backend_sycl_split_buffer_type;
+ }
4646
4647
// SYCL doesn't support registering host memory, left here for reference
4648
// "ggml_backend_register_host_buffer"
0 commit comments