Message ID | 20240321065040.4146676-1-wenbin.chen@intel.com |
---|---|
State | New |
Headers | show |
Series | [FFmpeg-devel] doc: Add libtoch backend option to dnn_processing | expand |
Context | Check | Description |
---|---|---|
yinshiyou/make_loongarch64 | success | Make finished |
yinshiyou/make_fate_loongarch64 | success | Make fate finished |
andriy/make_x86 | success | Make finished |
andriy/make_fate_x86 | success | Make fate finished |
> -----Original Message----- > From: ffmpeg-devel <ffmpeg-devel-bounces@ffmpeg.org> On Behalf Of > wenbin.chen-at-intel.com@ffmpeg.org > Sent: Thursday, March 21, 2024 2:51 PM > To: ffmpeg-devel@ffmpeg.org > Subject: [FFmpeg-devel] [PATCH] doc: Add libtoch backend option to > dnn_processing > > From: Wenbin Chen <wenbin.chen@intel.com> > > Signed-off-by: Wenbin Chen <wenbin.chen@intel.com> > --- > doc/filters.texi | 12 +++++++++++- > 1 file changed, 11 insertions(+), 1 deletion(-) > > diff --git a/doc/filters.texi b/doc/filters.texi index 913365671d..20605e72b2 > 100644 > --- a/doc/filters.texi > +++ b/doc/filters.texi > @@ -12069,11 +12069,21 @@ need to build and install the OpenVINO for C > library (see @code{--enable-libopenvino} (--extra-cflags=-I... --extra-ldflags=- > L... might be needed if the header files and libraries are not installed into > system path) > > +@item torch > +Libtorch backend. To enable this backend you need to build and install > +Libtroch for C++ library. Please download cxx11 ABI version (see > +@url{https://pytorch.org/get-started/locally}) > +and configure FFmpeg with @code{--enable-libtorch > +--extra-cflag=-I/libtorch_root/libtorch/include > +--extra-cflag=-I/libtorch_root/libtorch/include/torch/csrc/api/include "s" is missed in extra-cflags
diff --git a/doc/filters.texi b/doc/filters.texi index 913365671d..20605e72b2 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -12069,11 +12069,21 @@ need to build and install the OpenVINO for C library (see @code{--enable-libopenvino} (--extra-cflags=-I... --extra-ldflags=-L... might be needed if the header files and libraries are not installed into system path) +@item torch +Libtorch backend. To enable this backend you need to build and install Libtroch +for C++ library. Please download cxx11 ABI version (see +@url{https://pytorch.org/get-started/locally}) +and configure FFmpeg with @code{--enable-libtorch +--extra-cflag=-I/libtorch_root/libtorch/include +--extra-cflag=-I/libtorch_root/libtorch/include/torch/csrc/api/include +--extra-ldflags=-L/libtorch_root/libtorch/lib/} + @end table @item model Set path to model file specifying network architecture and its parameters. -Note that different backends use different file formats. TensorFlow, OpenVINO backend can load files for only its format. +Note that different backends use different file formats. TensorFlow, OpenVINO +and Libtorch backend can load files for only its format. @item input Set the input name of the dnn network.