From: Lynne <dev@lynne.ee> To: FFmpeg development discussions and patches <ffmpeg-devel@ffmpeg.org> Subject: Re: [FFmpeg-devel] [PATCH 0/5] RISC-V: Improve H264 decoding performance using RVV intrinsic Date: Wed, 10 May 2023 13:41:45 +0200 (CEST) Message-ID: <NV4StyC--3-9@lynne.ee> (raw) In-Reply-To: <CAPUBFYFW4tFb+D-C+SvCyutW1D2Wat6quHbQyUKYE2qR7kBh+g@mail.gmail.com> May 10, 2023, 10:47 by arnie.chang@sifive.com: > Hi Lynne > > I fully respect the policy and understand the disadvantages of intrinsic > code. > Considering the benefits of the open ISA like RISC-V, > the intrinsic code should still have a better chance of being optimized by > the compiler for hardware variants. > ISA being open or not is irrelevant. Power9 is open and yet compilers still fail at having consistent performance rather than thrashing vectors to stack. Optimizing assembly code for new ISA features is simple with the much more advanced templating system present in assemblers. Plus, we can confirm that it's a net gain rather than a compiler artifact. As advanced compilers are, we cannot even trust them to compile C code correctly. GCC still has issues and miscompiles/misvectorizes our code, so we have to disable tree vectorization. Not that it's a big issue, performance-sensitive code is all assembly for us. > At this moment, the intrinsic implementation is the only thing available. > It would take a significant amount of time to rewrite it in assembly due to > the large amount of functions. > It's precisely because there isn't a lot of code written that this ought to be done now. Rewriting intrinsics or inline assembly is a hard process after being merged, and all sorts of bugs and weird behavior appears when rewriting to assembly. You could start by just disassembling the compiled version and cleaning it up. We've had to do this in the past. > I was wondering if we could treat the intrinsic code as an initial version > for the RISC-V port with the following modification. > - Add an option --enable-rvv-intrinsic to EXPLICITLY enable the > intrinsic optimization, which is disabled by default. > Based on the given conditions, vector supports in GCC and intrinsics > dislike and limits. Disabling it by default seems a reasonable way. > > For those who want to be involved in the optimization of H.264 decoder on > RISC-V can work on the assembly and decide whether to refer to intrinsic > code. > I believe this would be a good starting point for future optimization. > Well, sort of, no. No CPU has support for RVV 1.0 at the moment. There's no reason to hurry with this at all and merge less than desirable code, disabled by default, which hasn't even been tested on actual hardware. There's hardly real hardware on the horizon either. The P670 was allegedly released last year, but even you had to test your code on an FPGA. Even then, the P670 only has 128bit ALUs, which is suboptimal as variable vector code tends to be more latency-bound. The XuanTie C908 is a better candidate that I heard is getting released sooner, and it has 256bit ALUs. I've been wanting to write RVV code for years now, but the hardware simply hasn't been there yet. _______________________________________________ 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:[~2023-05-10 11:41 UTC|newest] Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top 2023-05-09 9:50 Arnie Chang 2023-05-09 9:50 ` [FFmpeg-devel] [PATCH 1/5] configure: Add detection of RISC-V vector intrinsic support Arnie Chang 2023-05-09 9:50 ` [FFmpeg-devel] [PATCH 2/5] lavc/h264chroma: Add vectorized implementation of chroma MC for RISC-V Arnie Chang 2023-05-09 9:50 ` [FFmpeg-devel] [PATCH 3/5] lavc/h264qpel: Add vectorized implementation of luma " Arnie Chang 2023-05-09 9:50 ` [FFmpeg-devel] [PATCH 4/5] lavc/h264dsp: Add vectorized implementation of DSP functions " Arnie Chang 2023-05-09 9:50 ` [FFmpeg-devel] [PATCH 5/5] lavc/h264pred: Add vectorized implementation of intra prediction " Arnie Chang 2023-05-09 15:47 ` [FFmpeg-devel] [PATCH 0/5] RISC-V: Improve H264 decoding performance using RVV intrinsic Lynne 2023-05-09 16:51 ` Rémi Denis-Courmont 2023-05-10 8:46 ` Arnie Chang 2023-05-10 11:41 ` Lynne [this message] 2023-05-10 12:14 ` Rémi Denis-Courmont
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=NV4StyC--3-9@lynne.ee \ --to=dev@lynne.ee \ --cc=ffmpeg-devel@ffmpeg.org \ /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