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
624624GGML_CALL static bool ggml_backend_rpc_supports_op (ggml_backend_t backend, const ggml_tensor * op) {
625625 UNUSED (backend);
626626 UNUSED (op);
627- GGML_ASSERT ( false && " not implemented " );
628- return false ;
627+ // TODO: call the remote backend and cache the results
628+ return true ;
629629}
630630
631631GGML_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) {
633633 return false ;
634634 }
635635 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