File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -624,12 +624,12 @@ GGML_CALL static enum ggml_status ggml_backend_rpc_graph_compute(ggml_backend_t
624
624
GGML_CALL static bool ggml_backend_rpc_supports_op (ggml_backend_t backend, const ggml_tensor * op) {
625
625
UNUSED (backend);
626
626
UNUSED (op);
627
- GGML_ASSERT ( false && " not implemented " );
628
- return false ;
627
+ // TODO: call the remote backend and cache the results
628
+ return true ;
629
629
}
630
630
631
631
GGML_CALL static bool ggml_backend_rpc_supports_buft (ggml_backend_t backend, ggml_backend_buffer_type_t buft) {
632
- if (buft->iface .get_name = = ggml_backend_rpc_buffer_type_name) {
632
+ if (buft->iface .get_name ! = ggml_backend_rpc_buffer_type_name) {
633
633
return false ;
634
634
}
635
635
ggml_backend_rpc_buffer_type_context * buft_ctx = (ggml_backend_rpc_buffer_type_context *)buft->context ;
You can’t perform that action at this time.
0 commit comments