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 debc40d commit f90ec25Copy full SHA for f90ec25
ggml/src/ggml-zdnn/ggml-zdnn.cpp
@@ -5,6 +5,7 @@
5
#include "zdnn.h"
6
7
#include <string>
8
+#include <memory>
9
#include <stdint.h>
10
11
struct ggml_backend_zdnn_context {
@@ -89,7 +90,7 @@ static struct ggml_backend_i ggml_backend_zdnn_i = {
89
90
/* .graph_plan_free = */ NULL,
91
/* .graph_plan_update = */ NULL,
92
/* .graph_plan_compute = */ NULL,
- /* .graph_compute = */ ggml_backend_zdnn_graph_compute(),
93
+ /* .graph_compute = */ ggml_backend_zdnn_graph_compute,
94
/* .event_record = */ NULL,
95
/* .event_wait = */ NULL,
96
};
0 commit comments