From: "Rémi Denis-Courmont" <remi@remlab.net> To: ffmpeg-devel@ffmpeg.org Subject: [FFmpeg-devel] [PATCH 3/5] lavc/h264dsp: correct VL and LMUL in idct_dc_add Date: Thu, 18 Jul 2024 22:35:44 +0300 Message-ID: <20240718193546.18939-3-remi@remlab.net> (raw) In-Reply-To: <20240718193546.18939-1-remi@remlab.net> T-Head C908 (cycles): h264_idct4_dc_add_8bpp_c: 94.7 h264_idct4_dc_add_8bpp_rvv_i32: 55.0 (before) h264_idct4_dc_add_8bpp_rvv_i32: 34.5 (after) h264_idct4_dc_add_9bpp_c: 94.7 h264_idct4_dc_add_9bpp_rvv_i32: 43.5 (before) h264_idct4_dc_add_9bpp_rvv_i32: 38.2 (after) h264_idct4_dc_add_10bpp_c: 94.7 h264_idct4_dc_add_10bpp_rvv_i32: 43.5 (before) h264_idct4_dc_add_10bpp_rvv_i32: 38.2 (after) h264_idct4_dc_add_12bpp_c: 94.7 h264_idct4_dc_add_12bpp_rvv_i32: 43.7 (before) h264_idct4_dc_add_12bpp_rvv_i32: 38.5 (after) h264_idct4_dc_add_14bpp_c: 94.7 h264_idct4_dc_add_14bpp_rvv_i32: 43.7 (before) h264_idct4_dc_add_14bpp_rvv_i32: 38.5 (after) --- libavcodec/riscv/h264idct_rvv.S | 24 +++++++++++++++++------- 1 file changed, 17 insertions(+), 7 deletions(-) diff --git a/libavcodec/riscv/h264idct_rvv.S b/libavcodec/riscv/h264idct_rvv.S index 37b27fc92a..2648e06aeb 100644 --- a/libavcodec/riscv/h264idct_rvv.S +++ b/libavcodec/riscv/h264idct_rvv.S @@ -416,22 +416,23 @@ endfunc .endr .macro idct_dc_add8 width -func ff_h264_idct\width\()_dc_add_8_rvv, zve64x, zba +func ff_h264_idct\width\()_dc_add_8_rvv, zve64x .if \width == 8 - vsetivli zero, \width, e16, m1, ta, ma + vsetivli zero, \width, e8, mf2, ta, ma .else - vsetivli zero, \width, e16, mf2, ta, ma + vsetivli zero, \width, e8, mf4, ta, ma .endif lh a3, 0(a1) addi a3, a3, 32 srai a3, a3, 6 sh zero, 0(a1) .if \width == 8 + li a6, \width * \width vlse64.v v24, (a0), a2 - vsetvli t0, zero, e16, m8, ta, ma + vsetvli zero, a6, e16, m8, ta, ma .else vlse32.v v24, (a0), a2 - vsetvli t0, zero, e16, m4, ta, ma + vsetivli zero, \width * \width, e16, m2, ta, ma .endif vzext.vf2 v0, v24 vadd.vx v0, v0, a3 @@ -439,13 +440,14 @@ func ff_h264_idct\width\()_dc_add_8_rvv, zve64x, zba .if \width == 8 vsetvli zero, zero, e8, m4, ta, ma .else - vsetvli zero, zero, e8, m2, ta, ma + vsetvli zero, zero, e8, m1, ta, ma .endif vnclipu.wi v24, v0, 0 - vsetivli zero, \width, e8, m1, ta, ma .if \width == 8 + vsetivli zero, \width, e8, mf2, ta, ma vsse64.v v24, (a0), a2 .else + vsetivli zero, \width, e8, mf4, ta, ma vsse32.v v24, (a0), a2 .endif ret @@ -457,7 +459,11 @@ idct_dc_add8 8 .macro idct_dc_add width func ff_h264_idct\width\()_dc_add_16_rvv, zve64x, zba +.if \width == 8 vsetivli zero, \width, e16, m1, ta, ma +.else + vsetivli zero, \width, e16, mf2, ta, ma +.endif lw a3, 0(a1) addi a3, a3, 32 srai a3, a3, 6 @@ -487,7 +493,11 @@ func ff_h264_idct\width\()_dc_add_16_rvv, zve64x, zba vadd.vx v0, v0, a3 vmax.vx v0, v0, zero vmin.vx v0, v0, a5 +.if \width == 8 vsetivli zero, \width, e16, m1, ta, ma +.else + vsetivli zero, \width, e16, mf2, ta, ma +.endif vse16.v v0, (a0) vse16.v v1, (t4) vse16.v v2, (t5) -- 2.45.2 _______________________________________________ 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-07-18 19:35 UTC|newest] Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top 2024-07-18 19:35 [FFmpeg-devel] [PATCH 1/5] lavc/h264dsp: factor some mostly identical R-V V code Rémi Denis-Courmont 2024-07-18 19:35 ` [FFmpeg-devel] [PATCH 2/5] lavc/h264dsp: move R-V V idct_dc_add Rémi Denis-Courmont 2024-07-18 19:35 ` Rémi Denis-Courmont [this message] 2024-07-18 19:35 ` [FFmpeg-devel] [PATCH 4/5] lavc/h264dsp: reuse the R-V V IDCT DC add functions Rémi Denis-Courmont 2024-07-18 19:35 ` [FFmpeg-devel] [PATCH 5/5] lavc/h264dsp: reduce spills in R-V V idct_add16 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=20240718193546.18939-3-remi@remlab.net \ --to=remi@remlab.net \ --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