Skip to content

Commit 7a6a6a3

Browse files
authored
wasi_nn_openvino.c: fix a debug build (#4416)
after "wasi_nn_openvino.c: implement multiple models per instance" change. (#4380)
1 parent 18d4227 commit 7a6a6a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/iwasm/libraries/wasi-nn/src/wasi_nn_openvino.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ load(void *ctx, graph_builder_array *builder, graph_encoding encoding,
287287
graph->weights_tensor, &graph->model),
288288
ret);
289289
#ifndef NDEBUG
290-
print_model_input_output_info(ov_ctx->model);
290+
print_model_input_output_info(graph->model);
291291
#endif
292292

293293
CHECK_OV_STATUS(ov_core_compile_model(ov_ctx->core, graph->model, "CPU", 0,

0 commit comments

Comments
 (0)