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,
|
/* .graph_compute = */ ggml_backend_openvino_graph_compute,
|
||||||
/* .event_record = */ NULL,
|
/* .event_record = */ NULL,
|
||||||
/* .event_wait = */ NULL,
|
/* .event_wait = */ NULL,
|
||||||
|
/* .graph_optimize = */ NULL,
|
||||||
};
|
};
|
||||||
|
|
||||||
int ggml_backend_openvino_get_device_count() {
|
int ggml_backend_openvino_get_device_count() {
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,7 @@ namespace ggml {
|
||||||
namespace op {
|
namespace op {
|
||||||
|
|
||||||
OutputVector translate_set_rows(const NodeContext& context) {
|
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);
|
auto data = context.get_input(0);
|
||||||
data = std::make_shared<ov::op::v0::Convert>(data, context.get_output_type(0));
|
data = std::make_shared<ov::op::v0::Convert>(data, context.get_output_type(0));
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue