fix after rebasing
This commit is contained in:
parent
8b82d1153b
commit
299f4923bb
|
|
@ -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() {
|
||||
|
|
|
|||
|
|
@ -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));
|
||||
|
|
|
|||
Loading…
Reference in New Issue