From: "Guo, Yejun" <yejun.guo-at-intel.com@ffmpeg.org> To: FFmpeg development discussions and patches <ffmpeg-devel@ffmpeg.org> Cc: Zhao Zhili <zhilizhao@tencent.com> Subject: Re: [FFmpeg-devel] [PATCH v3 01/10] avfilter/dnn: Refactor DNN parameter configuration system Date: Mon, 6 May 2024 11:48:34 +0000 Message-ID: <PH7PR11MB5957A3C6D5EC9AD45C47AE39F11C2@PH7PR11MB5957.namprd11.prod.outlook.com> (raw) In-Reply-To: <tencent_2F01AD682E7D8AAC723929C2ADB57C68CE0A@qq.com> > -----Original Message----- > From: ffmpeg-devel <ffmpeg-devel-bounces@ffmpeg.org> On Behalf Of Zhao > Zhili > Sent: Tuesday, April 30, 2024 3:12 PM > To: ffmpeg-devel@ffmpeg.org > Cc: Zhao Zhili <zhilizhao@tencent.com> > Subject: [FFmpeg-devel] [PATCH v3 01/10] avfilter/dnn: Refactor DNN > parameter configuration system > > From: Zhao Zhili <zhilizhao@tencent.com> > > This patch trying to resolve mulitiple issues related to parameter > configuration: > > Firstly, each DNN filters duplicate DNN_COMMON_OPTIONS, which should > be the common options of backend. > > Secondly, backend options are hidden behind the scene. It's a > AV_OPT_TYPE_STRING backend_configs for user, and parsed by each > backend. We don't know each backend support what kind of options > from the help message. > > Third, DNN backends duplicate DNN_BACKEND_COMMON_OPTIONS. > > Last but not the least, pass backend options via AV_OPT_TYPE_STRING > makes it hard to pass AV_OPT_TYPE_BINARY to backend, if not impossible. > > This patch puts backend common options and each backend options inside > DnnContext to reduce code duplication, make options user friendly, and > easy to extend for future usecase. > > There is a known issue that, for a filter which only support one or two > of the backends, the help message still show the option of all three > backends. Each DNN filter should be able to run on any backend. Current > issue is mostly due to incomplete implementation (e.g., libtorch only > support DFT_PROCESS_FRAME), and lack of maintenance on the filters. This patch 01 basically looks good, two comments: - it is possible that we add one dnn filter with one backend support first, and then other backends one by one some-time later. So, please adjust the help message accordingly with only the supported backends. - is it possible to split this patch into small patches for an easier detail review? > > For example, > > ./ffmpeg -h filter=dnn_processing > > dnn_processing AVOptions: > dnn_backend <int> ..FV....... DNN backend (from INT_MIN to > INT_MAX) (default tensorflow) > tensorflow 1 ..FV....... tensorflow backend flag > openvino 2 ..FV....... openvino backend flag > torch 3 ..FV....... torch backend flag > > dnn_base AVOptions: > model <string> ..F........ path to model file > input <string> ..F........ input name of the model > output <string> ..F........ output name of the model > backend_configs <string> ..F.......P backend configs (deprecated) > options <string> ..F.......P backend configs (deprecated) > nireq <int> ..F........ number of request (from 0 to INT_MAX) > (default 0) > async <boolean> ..F........ use DNN async inference (default true) > device <string> ..F........ device to run model > > dnn_tensorflow AVOptions: > sess_config <string> ..F........ config for SessionOptions > > dnn_openvino AVOptions: > batch_size <int> ..F........ batch size per request (from 1 to 1000) > (default 1) > input_resizable <boolean> ..F........ can input be resizable or not (default > false) > layout <int> ..F........ input layout of model (from 0 to 2) (default > none) > none 0 ..F........ none > nchw 1 ..F........ nchw > nhwc 2 ..F........ nhwc > scale <float> ..F........ Add scale preprocess operation. Divide each > element of input by specified value. (from INT_MIN to INT_MAX) (default 0) > mean <float> ..F........ Add mean preprocess operation. Subtract > specified value from each element of input. (from INT_MIN to INT_MAX) > (default 0) > > dnn_th AVOptions: > optimize <int> ..F........ turn on graph executor optimization (from 0 > to 1) (default 0) > --- > libavfilter/dnn/dnn_backend_common.h | 13 ++- > libavfilter/dnn/dnn_backend_openvino.c | 146 ++++++++++--------------- > libavfilter/dnn/dnn_backend_tf.c | 82 +++++--------- > libavfilter/dnn/dnn_backend_torch.cpp | 67 ++++-------- > libavfilter/dnn/dnn_interface.c | 89 +++++++++++++++ > libavfilter/dnn_filter_common.c | 38 ++++++- > libavfilter/dnn_filter_common.h | 39 +++---- > libavfilter/dnn_interface.h | 67 +++++++++++- > libavfilter/vf_derain.c | 6 +- > libavfilter/vf_dnn_classify.c | 4 +- > libavfilter/vf_dnn_detect.c | 4 +- > libavfilter/vf_dnn_processing.c | 4 +- > libavfilter/vf_sr.c | 6 +- > 13 files changed, 336 insertions(+), 229 deletions(-) _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
next prev parent reply other threads:[~2024-05-06 11:48 UTC|newest] Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top [not found] <20240430071208.126817-1-quinkblack@foxmail.com> 2024-04-30 7:11 ` Zhao Zhili 2024-05-06 11:48 ` Guo, Yejun [this message] 2024-05-06 13:42 ` Zhao Zhili 2024-05-07 16:35 ` Zhao Zhili 2024-04-30 7:12 ` [FFmpeg-devel] [PATCH v3 02/10] avfilter/dnn_backend_openvino: Fix free context at random place Zhao Zhili 2024-04-30 7:12 ` [FFmpeg-devel] [PATCH v3 03/10] avfilter/dnn_backend_openvino: simplify memory allocation Zhao Zhili 2024-04-30 7:12 ` [FFmpeg-devel] [PATCH v3 04/10] avfilter/dnn_backend_tf: Remove one level of indentation Zhao Zhili 2024-04-30 7:12 ` [FFmpeg-devel] [PATCH v3 05/10] avfilter/dnn_backend_tf: Fix free context at random place Zhao Zhili 2024-04-30 7:12 ` [FFmpeg-devel] [PATCH v3 06/10] avfilter/dnn_backend_tf: Simplify memory allocation Zhao Zhili 2024-04-30 7:12 ` [FFmpeg-devel] [PATCH v3 07/10] avfilter/dnn_backend_torch: " Zhao Zhili 2024-04-30 7:12 ` [FFmpeg-devel] [PATCH v3 08/10] avfilter/dnn: Remove a level of dereference Zhao Zhili 2024-04-30 7:12 ` [FFmpeg-devel] [PATCH v3 09/10] avfilter/dnn: Use dnn_backend_info_list to search for dnn module Zhao Zhili 2024-04-30 7:12 ` [FFmpeg-devel] [PATCH v3 10/10] avfilter/vf_dnn_detect: Fix null pointer dereference Zhao Zhili
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=PH7PR11MB5957A3C6D5EC9AD45C47AE39F11C2@PH7PR11MB5957.namprd11.prod.outlook.com \ --to=yejun.guo-at-intel.com@ffmpeg.org \ --cc=ffmpeg-devel@ffmpeg.org \ --cc=zhilizhao@tencent.com \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel This inbox may be cloned and mirrored by anyone: git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \ ffmpegdev@gitmailbox.com public-inbox-index ffmpegdev Example config snippet for mirrors. AGPL code for this site: git clone https://public-inbox.org/public-inbox.git