Skip to content

Commit 66e503b

Browse files
committed
fix after rebasing
1 parent 2b4b32f commit 66e503b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

ggml/src/ggml-openvino/ggml-openvino.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ static const ggml_backend_i ggml_backend_openvino_interface = {
7070
/* .graph_compute = */ ggml_backend_openvino_graph_compute,
7171
/* .event_record = */ NULL,
7272
/* .event_wait = */ NULL,
73+
/* .graph_optimize = */ NULL,
7374
};
7475

7576
int ggml_backend_openvino_get_device_count() {

ggml/src/ggml-openvino/openvino/op/set_rows.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ namespace ggml {
2525
namespace op {
2626

2727
OutputVector translate_set_rows(const NodeContext& context) {
28-
num_inputs_check(context, 2, 2);
28+
num_inputs_check(context, 3, 3);
2929

3030
auto data = context.get_input(0);
3131
data = std::make_shared<ov::op::v0::Convert>(data, context.get_output_type(0));

0 commit comments

Comments
 (0)