From patchwork Mon Jan 18 03:42:13 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Fu, Ting" X-Patchwork-Id: 25003 Return-Path: X-Original-To: patchwork@ffaux-bg.ffmpeg.org Delivered-To: patchwork@ffaux-bg.ffmpeg.org Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by ffaux.localdomain (Postfix) with ESMTP id D696644B3A3 for ; Mon, 18 Jan 2021 05:50:23 +0200 (EET) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id BC68E6880D5; Mon, 18 Jan 2021 05:50:23 +0200 (EET) X-Original-To: ffmpeg-devel@ffmpeg.org Delivered-To: ffmpeg-devel@ffmpeg.org Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 5247E68052C for ; Mon, 18 Jan 2021 05:50:17 +0200 (EET) IronPort-SDR: 7COX3vrB96GvvtJZZPbAc/8KhRE7GtV4s5e25VBr8LnOSMT2WxCDjtFqaCxkch2JTYgUjsjw1n lDJwoLWJMmvg== X-IronPort-AV: E=McAfee;i="6000,8403,9867"; a="158528919" X-IronPort-AV: E=Sophos;i="5.79,355,1602572400"; d="scan'208";a="158528919" Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2021 19:50:09 -0800 IronPort-SDR: fLYuKdsfq2TWlLcuxxAQGHnCTaOXqsnhVU4kxgL0jEaUpdhKCBa1UqGCzBc1KhjZiD/OL8qe1o LeFf3XKU60bQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.79,355,1602572400"; d="scan'208";a="365213322" Received: from semmer-ubuntu.sh.intel.com ([10.239.159.136]) by orsmga002.jf.intel.com with ESMTP; 17 Jan 2021 19:50:08 -0800 From: Ting Fu To: ffmpeg-devel@ffmpeg.org Date: Mon, 18 Jan 2021 11:42:13 +0800 Message-Id: <20210118034214.13116-2-ting.fu@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20210118034214.13116-1-ting.fu@intel.com> References: <20210118034214.13116-1-ting.fu@intel.com> Subject: [FFmpeg-devel] [PATCH V3 2/3] dnn/openvino: refine code for better model initialization X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: FFmpeg development discussions and patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: FFmpeg development discussions and patches MIME-Version: 1.0 Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Move openvino model/inference request creation and initialization steps from ff_dnn_load_model_ov to new function init_model_ov, for later input resize support. Signed-off-by: Ting Fu --- libavfilter/dnn/dnn_backend_openvino.c | 203 ++++++++++++++----------- 1 file changed, 118 insertions(+), 85 deletions(-) diff --git a/libavfilter/dnn/dnn_backend_openvino.c b/libavfilter/dnn/dnn_backend_openvino.c index 8476f4fb38..ecfd2b3f36 100644 --- a/libavfilter/dnn/dnn_backend_openvino.c +++ b/libavfilter/dnn/dnn_backend_openvino.c @@ -248,6 +248,103 @@ static void infer_completion_callback(void *args) } } +static DNNReturnType init_model_ov(OVModel *ov_model) +{ + OVContext *ctx = &ov_model->ctx; + IEStatusCode status; + ie_available_devices_t a_dev; + ie_config_t config = {NULL, NULL, NULL}; + char *all_dev_names = NULL; + + // batch size + if (ctx->options.batch_size <= 0) { + ctx->options.batch_size = 1; + } + + if (ctx->options.batch_size > 1) { + input_shapes_t input_shapes; + status = ie_network_get_input_shapes(ov_model->network, &input_shapes); + if (status != OK) + goto err; + for (int i = 0; i < input_shapes.shape_num; i++) + input_shapes.shapes[i].shape.dims[0] = ctx->options.batch_size; + status = ie_network_reshape(ov_model->network, input_shapes); + ie_network_input_shapes_free(&input_shapes); + if (status != OK) + goto err; + } + + status = ie_core_load_network(ov_model->core, ov_model->network, ctx->options.device_type, &config, &ov_model->exe_network); + if (status != OK) { + av_log(ctx, AV_LOG_ERROR, "Failed to load OpenVINO model network\n"); + status = ie_core_get_available_devices(ov_model->core, &a_dev); + if (status != OK) { + av_log(ctx, AV_LOG_ERROR, "Failed to get available devices\n"); + goto err; + } + for (int i = 0; i < a_dev.num_devices; i++) { + APPEND_STRING(all_dev_names, a_dev.devices[i]) + } + av_log(ctx, AV_LOG_ERROR,"device %s may not be supported, all available devices are: \"%s\"\n", + ctx->options.device_type, all_dev_names); + goto err; + } + + // create infer_request for sync execution + status = ie_exec_network_create_infer_request(ov_model->exe_network, &ov_model->infer_request); + if (status != OK) + goto err; + + // create infer_requests for async execution + if (ctx->options.nireq <= 0) { + // the default value is a rough estimation + ctx->options.nireq = av_cpu_count() / 2 + 1; + } + + ov_model->request_queue = ff_safe_queue_create(); + if (!ov_model->request_queue) { + goto err; + } + + for (int i = 0; i < ctx->options.nireq; i++) { + RequestItem *item = av_mallocz(sizeof(*item)); + if (!item) { + goto err; + } + + status = ie_exec_network_create_infer_request(ov_model->exe_network, &item->infer_request); + if (status != OK) { + av_freep(&item); + goto err; + } + + item->tasks = av_malloc_array(ctx->options.batch_size, sizeof(*item->tasks)); + if (!item->tasks) { + av_freep(&item); + goto err; + } + item->task_count = 0; + + item->callback.completeCallBackFunc = infer_completion_callback; + item->callback.args = item; + if (ff_safe_queue_push_back(ov_model->request_queue, item) < 0) { + av_freep(&item); + goto err; + } + } + + ov_model->task_queue = ff_queue_create(); + if (!ov_model->task_queue) { + goto err; + } + + return DNN_SUCCESS; + +err: + ff_dnn_free_model_ov(&ov_model->model); + return DNN_ERROR; +} + static DNNReturnType execute_model_ov(RequestItem *request) { IEStatusCode status; @@ -367,6 +464,13 @@ static DNNReturnType get_output_ov(void *model, const char *input_name, int inpu in_frame->width = input_width; in_frame->height = input_height; + if (!ov_model->exe_network) { + if (init_model_ov(ov_model) != DNN_SUCCESS) { + av_log(ctx, AV_LOG_ERROR, "Failed init OpenVINO exectuable network or inference request\n"); + return DNN_ERROR; + }; + } + task.done = 0; task.do_ioproc = 0; task.async = 0; @@ -391,13 +495,10 @@ static DNNReturnType get_output_ov(void *model, const char *input_name, int inpu DNNModel *ff_dnn_load_model_ov(const char *model_filename, const char *options, AVFilterContext *filter_ctx) { - char *all_dev_names = NULL; DNNModel *model = NULL; OVModel *ov_model = NULL; OVContext *ctx = NULL; IEStatusCode status; - ie_config_t config = {NULL, NULL, NULL}; - ie_available_devices_t a_dev; model = av_mallocz(sizeof(DNNModel)); if (!model){ @@ -429,88 +530,6 @@ DNNModel *ff_dnn_load_model_ov(const char *model_filename, const char *options, if (status != OK) goto err; - // batch size - if (ctx->options.batch_size <= 0) { - ctx->options.batch_size = 1; - } - - if (ctx->options.batch_size > 1) { - input_shapes_t input_shapes; - status = ie_network_get_input_shapes(ov_model->network, &input_shapes); - if (status != OK) - goto err; - for (int i = 0; i < input_shapes.shape_num; i++) - input_shapes.shapes[i].shape.dims[0] = ctx->options.batch_size; - status = ie_network_reshape(ov_model->network, input_shapes); - ie_network_input_shapes_free(&input_shapes); - if (status != OK) - goto err; - } - - status = ie_core_load_network(ov_model->core, ov_model->network, ctx->options.device_type, &config, &ov_model->exe_network); - if (status != OK) { - av_log(ctx, AV_LOG_ERROR, "Failed to init OpenVINO model\n"); - status = ie_core_get_available_devices(ov_model->core, &a_dev); - if (status != OK) { - av_log(ctx, AV_LOG_ERROR, "Failed to get available devices\n"); - goto err; - } - for (int i = 0; i < a_dev.num_devices; i++) { - APPEND_STRING(all_dev_names, a_dev.devices[i]) - } - av_log(ctx, AV_LOG_ERROR,"device %s may not be supported, all available devices are: \"%s\"\n", - ctx->options.device_type, all_dev_names); - goto err; - } - - // create infer_request for sync execution - status = ie_exec_network_create_infer_request(ov_model->exe_network, &ov_model->infer_request); - if (status != OK) - goto err; - - // create infer_requests for async execution - if (ctx->options.nireq <= 0) { - // the default value is a rough estimation - ctx->options.nireq = av_cpu_count() / 2 + 1; - } - - ov_model->request_queue = ff_safe_queue_create(); - if (!ov_model->request_queue) { - goto err; - } - - for (int i = 0; i < ctx->options.nireq; i++) { - RequestItem *item = av_mallocz(sizeof(*item)); - if (!item) { - goto err; - } - - status = ie_exec_network_create_infer_request(ov_model->exe_network, &item->infer_request); - if (status != OK) { - av_freep(&item); - goto err; - } - - item->tasks = av_malloc_array(ctx->options.batch_size, sizeof(*item->tasks)); - if (!item->tasks) { - av_freep(&item); - goto err; - } - item->task_count = 0; - - item->callback.completeCallBackFunc = infer_completion_callback; - item->callback.args = item; - if (ff_safe_queue_push_back(ov_model->request_queue, item) < 0) { - av_freep(&item); - goto err; - } - } - - ov_model->task_queue = ff_queue_create(); - if (!ov_model->task_queue) { - goto err; - } - model->get_input = &get_input_ov; model->get_output = &get_output_ov; model->options = options; @@ -554,6 +573,13 @@ DNNReturnType ff_dnn_execute_model_ov(const DNNModel *model, const char *input_n return DNN_ERROR; } + if (!ov_model->exe_network) { + if (init_model_ov(ov_model) != DNN_SUCCESS) { + av_log(ctx, AV_LOG_ERROR, "Failed init OpenVINO exectuable network or inference request\n"); + return DNN_ERROR; + }; + } + task.done = 0; task.do_ioproc = 1; task.async = 0; @@ -594,6 +620,13 @@ DNNReturnType ff_dnn_execute_model_async_ov(const DNNModel *model, const char *i return DNN_ERROR; } + if (!ov_model->exe_network) { + if (init_model_ov(ov_model) != DNN_SUCCESS) { + av_log(ctx, AV_LOG_ERROR, "Failed init OpenVINO exectuable network or inference request\n"); + return DNN_ERROR; + }; + } + task->done = 0; task->do_ioproc = 1; task->async = 1;