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 47843b6 commit 63f6bbaCopy full SHA for 63f6bba
ggml/src/ggml-openvino/ggml-openvino.cpp
@@ -70,6 +70,7 @@ static const ggml_backend_i ggml_backend_openvino_interface = {
70
/* .graph_compute = */ ggml_backend_openvino_graph_compute,
71
/* .event_record = */ NULL,
72
/* .event_wait = */ NULL,
73
+ /* .graph_optimize = */ NULL,
74
};
75
76
int ggml_backend_openvino_get_device_count() {
ggml/src/ggml-openvino/openvino/op/set_rows.cpp
@@ -25,7 +25,7 @@ namespace ggml {
25
namespace op {
26
27
OutputVector translate_set_rows(const NodeContext& context) {
28
- num_inputs_check(context, 2, 2);
+ num_inputs_check(context, 3, 3);
29
30
auto data = context.get_input(0);
31
data = std::make_shared<ov::op::v0::Convert>(data, context.get_output_type(0));
0 commit comments