Possible bug in ggml_backend_sched_split_graph()? #10422
Closed
CharlesJu1
started this conversation in
General
Replies: 1 comment
-
I figured it is intended. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is there a bug in the following code regarding "else if (cur_backend_id != -1) "?
When cur_backend_id is changed from -1 to other values in the if clause "if (*node_backend_id != -1)", the "else if (cur_backend_id != -1) " is not executed because the "previous" cur_backend_id is -1。The changed value of cur_backend_id in the if clause does not affect the decision of else if clause.
Beta Was this translation helpful? Give feedback.
All reactions