From: flow gg <hlefthleft@gmail.com>
To: FFmpeg development discussions and patches <ffmpeg-devel@ffmpeg.org>
Subject: Re: [FFmpeg-devel] [PATCH] lavc/vp8dsp: R-V V put_bilin_h v unroll
Date: Thu, 30 May 2024 23:36:40 +0800
Message-ID: <CAEa-L+ta8f5LYEVOaP7-4MDm7Jj=Pnwv0p1wb0TzT_=PfBDTEw@mail.gmail.com> (raw)
In-Reply-To: <tencent_C1565BD80F4F886AB785C7905C31D75C1906@qq.com>
I directly copied the VP9 modifications over... Since len <= 16, it seems
like it can be improved a bit more
<uk7b@foxmail.com> 于2024年5月30日周四 23:27写道:
> From: sunyuechi <sunyuechi@iscas.ac.cn>
>
> Since len < 64, the registers are sufficient, so it can be
> directly unrolled (a4 is even).
>
> Another benefit of unrolling is that it reduces one load operation
> vertically compared to horizontally.
>
> old new
> C908 X60 C908 X60
> vp8_put_bilin4_h_c : 6.2 5.5 : 6.2 5.5
> vp8_put_bilin4_h_rvv_i32 : 2.2 2.0 : 1.5 1.5
> vp8_put_bilin4_v_c : 6.5 5.7 : 6.2 5.7
> vp8_put_bilin4_v_rvv_i32 : 2.2 2.0 : 1.2 1.5
> vp8_put_bilin8_h_c : 24.2 21.5 : 24.2 21.5
> vp8_put_bilin8_h_rvv_i32 : 5.2 4.7 : 3.5 3.5
> vp8_put_bilin8_v_c : 24.5 21.7 : 24.5 21.7
> vp8_put_bilin8_v_rvv_i32 : 5.2 4.7 : 3.5 3.2
> vp8_put_bilin16_h_c : 48.0 42.7 : 48.0 42.7
> vp8_put_bilin16_h_rvv_i32 : 5.7 5.0 : 5.2 4.5
> vp8_put_bilin16_v_c : 48.2 43.0 : 48.2 42.7
> vp8_put_bilin16_v_rvv_i32 : 5.7 5.2 : 4.5 4.2
> ---
> libavcodec/riscv/vp8dsp_rvv.S | 34 +++++++++++++++++++++++++++++-----
> 1 file changed, 29 insertions(+), 5 deletions(-)
>
> diff --git a/libavcodec/riscv/vp8dsp_rvv.S b/libavcodec/riscv/vp8dsp_rvv.S
> index 3360a38cac..5bea6cba9c 100644
> --- a/libavcodec/riscv/vp8dsp_rvv.S
> +++ b/libavcodec/riscv/vp8dsp_rvv.S
> @@ -172,11 +172,35 @@ func ff_put_vp8_bilin4_\type\()_rvv, zve32x
> li t4, 4
> sub t1, t1, \mn
> 1:
> - addi a4, a4, -1
> - bilin_load v0, \type, \mn
> - vse8.v v0, (a0)
> - add a2, a2, a3
> - add a0, a0, a1
> + add t0, a2, a3
> + add t2, a0, a1
> + addi a4, a4, -2
> +.ifc \type,v
> + add t3, t0, a3
> +.else
> + addi t5, a2, 1
> + addi t3, t0, 1
> + vle8.v v2, (t5)
> +.endif
> + vle8.v v0, (a2)
> + vle8.v v4, (t0)
> + vle8.v v6, (t3)
> + vwmulu.vx v28, v0, t1
> + vwmulu.vx v26, v4, t1
> +.ifc \type,v
> + vwmaccu.vx v28, \mn, v4
> +.else
> + vwmaccu.vx v28, \mn, v2
> +.endif
> + vwmaccu.vx v26, \mn, v6
> + vwaddu.wx v24, v28, t4
> + vwaddu.wx v22, v26, t4
> + vnsra.wi v30, v24, 3
> + vnsra.wi v0, v22, 3
> + vse8.v v30, (a0)
> + vse8.v v0, (t2)
> + add a2, t0, a3
> + add a0, t2, a1
> bnez a4, 1b
>
> ret
> --
> 2.45.1
>
> _______________________________________________
> 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".
>
_______________________________________________
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-30 15:37 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-05-30 15:26 uk7b
2024-05-30 15:36 ` flow gg [this message]
2024-05-30 15:45 ` flow gg
2024-06-12 9:48 ` flow gg
2024-06-12 14:40 ` Rémi Denis-Courmont
2024-06-12 15:22 ` flow gg
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='CAEa-L+ta8f5LYEVOaP7-4MDm7Jj=Pnwv0p1wb0TzT_=PfBDTEw@mail.gmail.com' \
--to=hlefthleft@gmail.com \
--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