fix after rebasing

This commit is contained in:
Yu, Zijun 2025-10-11 13:45:39 +08:00 committed by Mustafa Cavus
parent 8b82d1153b
commit 299f4923bb
2 changed files with 2 additions and 1 deletions

View File

@ -70,6 +70,7 @@ static const ggml_backend_i ggml_backend_openvino_interface = {
/* .graph_compute = */ ggml_backend_openvino_graph_compute,
/* .event_record = */ NULL,
/* .event_wait = */ NULL,
/* .graph_optimize = */ NULL,
};
int ggml_backend_openvino_get_device_count() {

View File

@ -25,7 +25,7 @@ namespace ggml {
namespace op {
OutputVector translate_set_rows(const NodeContext& context) {
num_inputs_check(context, 2, 2);
num_inputs_check(context, 3, 3);
auto data = context.get_input(0);
data = std::make_shared<ov::op::v0::Convert>(data, context.get_output_type(0));