* [FFmpeg-devel] [PATCH 1/2] lavc/h264dsp: R-V V 8-bit luma loop filter
@ 2024-06-30 9:05 Rémi Denis-Courmont
2024-06-30 9:05 ` [FFmpeg-devel] [PATCH 2/2] lavc/h264dsp: R-V V 8-bit MBAFF " Rémi Denis-Courmont
0 siblings, 1 reply; 3+ messages in thread
From: Rémi Denis-Courmont @ 2024-06-30 9:05 UTC (permalink / raw)
To: ffmpeg-devel
T-Head C908 (cycles):
h264_h_loop_filter_luma_8bpp_c: 297.5
h264_h_loop_filter_luma_8bpp_rvv_i32: 374.7
h264_v_loop_filter_luma_8bpp_c: 862.7
h264_v_loop_filter_luma_8bpp_rvv_i32: 200.7
Performance in the horizontal scenario seems worse than scalar. x86
SSE2 and AVX optimisations are similarly affected. This is presumably
caused by unlucky inputs from checkasm, such that the C code
short-circuits almost all filter calculations.
---
libavcodec/riscv/Makefile | 1 +
libavcodec/riscv/h264dsp_init.c | 13 ++-
libavcodec/riscv/h264dsp_rvv.S | 136 ++++++++++++++++++++++++++++++++
3 files changed, 149 insertions(+), 1 deletion(-)
create mode 100644 libavcodec/riscv/h264dsp_rvv.S
diff --git a/libavcodec/riscv/Makefile b/libavcodec/riscv/Makefile
index c180223141..a1510e8c6e 100644
--- a/libavcodec/riscv/Makefile
+++ b/libavcodec/riscv/Makefile
@@ -31,6 +31,7 @@ RVV-OBJS-$(CONFIG_H263DSP) += riscv/h263dsp_rvv.o
OBJS-$(CONFIG_H264CHROMA) += riscv/h264_chroma_init_riscv.o
RVV-OBJS-$(CONFIG_H264CHROMA) += riscv/h264_mc_chroma.o
OBJS-$(CONFIG_H264DSP) += riscv/h264dsp_init.o
+RVV-OBJS-$(CONFIG_H264DSP) += riscv/h264dsp_rvv.o
OBJS-$(CONFIG_HUFFYUV_DECODER) += riscv/huffyuvdsp_init.o
RVV-OBJS-$(CONFIG_HUFFYUV_DECODER) += riscv/huffyuvdsp_rvv.o
OBJS-$(CONFIG_IDCTDSP) += riscv/idctdsp_init.o
diff --git a/libavcodec/riscv/h264dsp_init.c b/libavcodec/riscv/h264dsp_init.c
index dbbf3db400..0d4d541992 100644
--- a/libavcodec/riscv/h264dsp_init.c
+++ b/libavcodec/riscv/h264dsp_init.c
@@ -24,8 +24,14 @@
#include "libavutil/attributes.h"
#include "libavutil/cpu.h"
+#include "libavutil/riscv/cpu.h"
#include "libavcodec/h264dsp.h"
+void ff_h264_v_loop_filter_luma_8_rvv(uint8_t *pix, ptrdiff_t stride,
+ int alpha, int beta, int8_t *tc0);
+void ff_h264_h_loop_filter_luma_8_rvv(uint8_t *pix, ptrdiff_t stride,
+ int alpha, int beta, int8_t *tc0);
+
extern int ff_startcode_find_candidate_rvb(const uint8_t *, int);
extern int ff_startcode_find_candidate_rvv(const uint8_t *, int);
@@ -38,8 +44,13 @@ av_cold void ff_h264dsp_init_riscv(H264DSPContext *dsp, const int bit_depth,
if (flags & AV_CPU_FLAG_RVB_BASIC)
dsp->startcode_find_candidate = ff_startcode_find_candidate_rvb;
# if HAVE_RVV
- if (flags & AV_CPU_FLAG_RVV_I32)
+ if (flags & AV_CPU_FLAG_RVV_I32) {
+ if (bit_depth == 8 && ff_rv_vlen_least(128)) {
+ dsp->h264_v_loop_filter_luma = ff_h264_v_loop_filter_luma_8_rvv;
+ dsp->h264_h_loop_filter_luma = ff_h264_h_loop_filter_luma_8_rvv;
+ }
dsp->startcode_find_candidate = ff_startcode_find_candidate_rvv;
+ }
# endif
#endif
}
diff --git a/libavcodec/riscv/h264dsp_rvv.S b/libavcodec/riscv/h264dsp_rvv.S
new file mode 100644
index 0000000000..ea9dfb1a7e
--- /dev/null
+++ b/libavcodec/riscv/h264dsp_rvv.S
@@ -0,0 +1,136 @@
+/*
+ * Copyright © 2024 Rémi Denis-Courmont.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright notice,
+ * this list of conditions and the following disclaimer.
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright notice,
+ * this list of conditions and the following disclaimer in the documentation
+ * and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ * POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#include "libavutil/riscv/asm.S"
+
+ .variant_cc ff_h264_loop_filter_luma_8_rvv
+func ff_h264_loop_filter_luma_8_rvv, zve32x
+ # p2: v8, p1: v9, p0: v10, q0: v11, q1: v12, q2: v13
+ # alpha: a2, beta: a3
+ csrwi vxrm, 0
+ vid.v v0
+ vaaddu.vv v14, v10, v11 # (p0 + q0 + 1) / 2
+ vsrl.vi v0, v0, 2 # v0[i] = i / inner_iters
+ vwsubu.vv v16, v9, v12
+ vrgather.vv v6, v4, v0 # tc_orig
+ vwaddu.vv v18, v8, v14
+ vwaddu.vv v20, v13, v14
+ vnsra.wi v24, v16, 2 # (p1 - q1) / 4
+ vnsrl.wi v14, v18, 1
+ vnsrl.wi v15, v20, 1
+ vneg.v v5, v6 # -tc_orig
+ vwsubu.vv v22, v11, v10 # q0 - p0
+ vwsubu.vv v18, v14, v9
+ vwsubu.vv v20, v15, v12
+ vwadd.wv v16, v22, v24
+ vmsge.vi v7, v6, 0 # tc_orig >= 0
+ vnclip.wi v14, v18, 0
+ vnclip.wi v15, v20, 0
+ vnclip.wi v16, v16, 1 # clip8((q0 - p0 + (p1 - q1) / 4 + 1) >> 1)
+ vmin.vv v14, v14, v6
+ vmin.vv v15, v15, v6
+ vmax.vv v14, v14, v5 # clip(p2 + ... - p1, +/-tc_orig)
+ vmax.vv v15, v15, v5 # clip(q2 + ... - q1, +/-tc_orig)
+ vwsubu.vv v20, v10, v11
+ vwsubu.vv v24, v9, v10
+ vwsubu.vv v26, v10, v9
+ vwsubu.vv v28, v12, v11
+ vwsubu.vv v30, v11, v12
+ vwsubu.vv v0, v8, v10
+ vwsubu.vv v2, v10, v8
+ vwsubu.vv v4, v13, v11
+ vwsubu.vv v18, v11, v13
+ vsetvli zero, zero, e16, m2, ta, ma
+ vmax.vv v20, v20, v22 # abs(p0 - q0)
+ vmax.vv v24, v24, v26 # abs(p1 - p0)
+ vmax.vv v28, v28, v30 # abs(q1 - q0)
+ vmax.vv v22, v0, v2 # abs(p2 - p0)
+ vmax.vv v26, v4, v18 # abs(q2 - q0)
+ vmslt.vx v1, v20, a2
+ vmslt.vx v2, v24, a3
+ vmand.mm v7, v7, v1
+ vmslt.vx v3, v28, a3
+ vmand.mm v7, v7, v2
+ vmslt.vx v0, v22, a3
+ vmand.mm v7, v7, v3 # whether to update p0 and q0
+ vmslt.vx v1, v26, a3
+ vmand.mm v0, v0, v7
+ vsetvli zero, zero, e8, m1, ta, mu
+ vadd.vi v6, v6, 1, v0.t # tc++
+ vadd.vv v9, v9, v14, v0.t # p1'
+ vmand.mm v0, v1, v7
+ vadd.vi v6, v6, 1, v0.t # tc++
+ vadd.vv v12, v12, v15, v0.t # q1'
+ vneg.v v5, v6 # -tc
+ vmin.vv v16, v16, v6
+ vwcvtu.x.x.v v18, v10
+ vmax.vv v16, v16, v5
+ vwcvtu.x.x.v v20, v11
+ vwadd.wv v18, v18, v16
+ vwsub.wv v20, v20, v16
+ vmmv.m v0, v7
+ vsetvli zero, zero, e16, m2, ta, ma
+ vmax.vx v18, v18, zero
+ vmax.vx v20, v20, zero
+ vsetvli zero, zero, e8, m1, ta, mu
+ vnclipu.wi v10, v18, 0, v0.t # p0'
+ vnclipu.wi v11, v20, 0, v0.t # q0'
+ jr t0
+endfunc
+
+func ff_h264_v_loop_filter_luma_8_rvv, zve32x
+ vsetivli zero, 4, e8, mf4, ta, ma
+ vle8.v v4, (a4)
+ sub t3, a0, a1
+ vsetivli zero, 16, e8, m1, ta, ma
+ vle8.v v11, (a0)
+ sub t2, t3, a1
+ vle8.v v10, (t3)
+ sub t1, t2, a1
+ vle8.v v9, (t2)
+ add t5, a0, a1
+ vle8.v v8, (t1)
+ add t6, t5, a1
+ vle8.v v12, (t5)
+ vle8.v v13, (t6)
+ jal t0, ff_h264_loop_filter_luma_8_rvv
+ vse8.v v9, (t2)
+ vse8.v v10, (t3)
+ vse8.v v11, (a0)
+ vse8.v v12, (t5)
+ ret
+endfunc
+
+func ff_h264_h_loop_filter_luma_8_rvv, zve32x
+ vsetivli zero, 4, e8, mf4, ta, ma
+ vle8.v v4, (a4)
+ addi a0, a0, -3
+ vsetivli zero, 16, e8, m1, ta, ma
+ vlsseg6e8.v v8, (a0), a1
+ jal t0, ff_h264_loop_filter_luma_8_rvv
+ vssseg6e8.v v8, (a0), a1
+ ret
+endfunc
--
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".
^ permalink raw reply [flat|nested] 3+ messages in thread
* [FFmpeg-devel] [PATCH 2/2] lavc/h264dsp: R-V V 8-bit MBAFF loop filter
2024-06-30 9:05 [FFmpeg-devel] [PATCH 1/2] lavc/h264dsp: R-V V 8-bit luma loop filter Rémi Denis-Courmont
@ 2024-06-30 9:05 ` Rémi Denis-Courmont
0 siblings, 0 replies; 3+ messages in thread
From: Rémi Denis-Courmont @ 2024-06-30 9:05 UTC (permalink / raw)
To: ffmpeg-devel
Performance is (unfortunately) the same as with non-MBAFF, since the
hardware under test does not short-circuit vector tail calculations.
(IMO, a generic solution or work-around should be agreed on, rather
than bespoke approaches all over the place.)
---
libavcodec/riscv/h264dsp_init.c | 4 ++++
libavcodec/riscv/h264dsp_rvv.S | 19 ++++++++++++++++---
2 files changed, 20 insertions(+), 3 deletions(-)
diff --git a/libavcodec/riscv/h264dsp_init.c b/libavcodec/riscv/h264dsp_init.c
index 0d4d541992..ab412a9924 100644
--- a/libavcodec/riscv/h264dsp_init.c
+++ b/libavcodec/riscv/h264dsp_init.c
@@ -31,6 +31,8 @@ void ff_h264_v_loop_filter_luma_8_rvv(uint8_t *pix, ptrdiff_t stride,
int alpha, int beta, int8_t *tc0);
void ff_h264_h_loop_filter_luma_8_rvv(uint8_t *pix, ptrdiff_t stride,
int alpha, int beta, int8_t *tc0);
+void ff_h264_h_loop_filter_luma_mbaff_8_rvv(uint8_t *pix, ptrdiff_t stride,
+ int alpha, int beta, int8_t *tc0);
extern int ff_startcode_find_candidate_rvb(const uint8_t *, int);
extern int ff_startcode_find_candidate_rvv(const uint8_t *, int);
@@ -48,6 +50,8 @@ av_cold void ff_h264dsp_init_riscv(H264DSPContext *dsp, const int bit_depth,
if (bit_depth == 8 && ff_rv_vlen_least(128)) {
dsp->h264_v_loop_filter_luma = ff_h264_v_loop_filter_luma_8_rvv;
dsp->h264_h_loop_filter_luma = ff_h264_h_loop_filter_luma_8_rvv;
+ dsp->h264_h_loop_filter_luma_mbaff =
+ ff_h264_h_loop_filter_luma_mbaff_8_rvv;
}
dsp->startcode_find_candidate = ff_startcode_find_candidate_rvv;
}
diff --git a/libavcodec/riscv/h264dsp_rvv.S b/libavcodec/riscv/h264dsp_rvv.S
index ea9dfb1a7e..c5d21ba607 100644
--- a/libavcodec/riscv/h264dsp_rvv.S
+++ b/libavcodec/riscv/h264dsp_rvv.S
@@ -26,6 +26,15 @@
#include "libavutil/riscv/asm.S"
+ .macro .mbaff
+ .irp type,,_mbaff
+ .ifb \type
+ .equ IS_MBAFF, 0
+ .else
+ .equ IS_MBAFF, 1
+ .endif
+ .endm
+
.variant_cc ff_h264_loop_filter_luma_8_rvv
func ff_h264_loop_filter_luma_8_rvv, zve32x
# p2: v8, p1: v9, p0: v10, q0: v11, q1: v12, q2: v13
@@ -33,7 +42,7 @@ func ff_h264_loop_filter_luma_8_rvv, zve32x
csrwi vxrm, 0
vid.v v0
vaaddu.vv v14, v10, v11 # (p0 + q0 + 1) / 2
- vsrl.vi v0, v0, 2 # v0[i] = i / inner_iters
+ vsrl.vx v0, v0, a4 # v0[i] = i / inner_iters
vwsubu.vv v16, v9, v12
vrgather.vv v6, v4, v0 # tc_orig
vwaddu.vv v18, v8, v14
@@ -116,6 +125,7 @@ func ff_h264_v_loop_filter_luma_8_rvv, zve32x
add t6, t5, a1
vle8.v v12, (t5)
vle8.v v13, (t6)
+ li a4, 2 # log2(inner_iters)
jal t0, ff_h264_loop_filter_luma_8_rvv
vse8.v v9, (t2)
vse8.v v10, (t3)
@@ -124,13 +134,16 @@ func ff_h264_v_loop_filter_luma_8_rvv, zve32x
ret
endfunc
-func ff_h264_h_loop_filter_luma_8_rvv, zve32x
+.mbaff
+func ff_h264_h_loop_filter_luma\type\()_8_rvv, zve32x
vsetivli zero, 4, e8, mf4, ta, ma
vle8.v v4, (a4)
addi a0, a0, -3
- vsetivli zero, 16, e8, m1, ta, ma
+ vsetivli zero, 16 >> IS_MBAFF, e8, m1, ta, ma
vlsseg6e8.v v8, (a0), a1
+ li a4, 2 >> IS_MBAFF # log2(inner_iters)
jal t0, ff_h264_loop_filter_luma_8_rvv
vssseg6e8.v v8, (a0), a1
ret
endfunc
+.endr
--
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".
^ permalink raw reply [flat|nested] 3+ messages in thread
* [FFmpeg-devel] [PATCH 2/2] lavc/h264dsp: R-V V 8-bit MBAFF loop filter
2024-07-01 15:23 [FFmpeg-devel] [PATCHv2 1/2] lavc/h264dsp: R-V V 8-bit luma " Rémi Denis-Courmont
@ 2024-07-01 15:23 ` Rémi Denis-Courmont
0 siblings, 0 replies; 3+ messages in thread
From: Rémi Denis-Courmont @ 2024-07-01 15:23 UTC (permalink / raw)
To: ffmpeg-devel
Performance is (unfortunately) the same as with non-MBAFF, since the
hardware under test does not short-circuit vector tail calculations.
(IMO, a generic solution or work-around should be agreed on, rather
than bespoke approaches all over the place.)
---
libavcodec/riscv/h264dsp_init.c | 4 ++++
libavcodec/riscv/h264dsp_rvv.S | 14 ++++++++++++++
2 files changed, 18 insertions(+)
diff --git a/libavcodec/riscv/h264dsp_init.c b/libavcodec/riscv/h264dsp_init.c
index 0d4d541992..ab412a9924 100644
--- a/libavcodec/riscv/h264dsp_init.c
+++ b/libavcodec/riscv/h264dsp_init.c
@@ -31,6 +31,8 @@ void ff_h264_v_loop_filter_luma_8_rvv(uint8_t *pix, ptrdiff_t stride,
int alpha, int beta, int8_t *tc0);
void ff_h264_h_loop_filter_luma_8_rvv(uint8_t *pix, ptrdiff_t stride,
int alpha, int beta, int8_t *tc0);
+void ff_h264_h_loop_filter_luma_mbaff_8_rvv(uint8_t *pix, ptrdiff_t stride,
+ int alpha, int beta, int8_t *tc0);
extern int ff_startcode_find_candidate_rvb(const uint8_t *, int);
extern int ff_startcode_find_candidate_rvv(const uint8_t *, int);
@@ -48,6 +50,8 @@ av_cold void ff_h264dsp_init_riscv(H264DSPContext *dsp, const int bit_depth,
if (bit_depth == 8 && ff_rv_vlen_least(128)) {
dsp->h264_v_loop_filter_luma = ff_h264_v_loop_filter_luma_8_rvv;
dsp->h264_h_loop_filter_luma = ff_h264_h_loop_filter_luma_8_rvv;
+ dsp->h264_h_loop_filter_luma_mbaff =
+ ff_h264_h_loop_filter_luma_mbaff_8_rvv;
}
dsp->startcode_find_candidate = ff_startcode_find_candidate_rvv;
}
diff --git a/libavcodec/riscv/h264dsp_rvv.S b/libavcodec/riscv/h264dsp_rvv.S
index 77bf40db1f..008f33d4b8 100644
--- a/libavcodec/riscv/h264dsp_rvv.S
+++ b/libavcodec/riscv/h264dsp_rvv.S
@@ -138,3 +138,17 @@ func ff_h264_h_loop_filter_luma_8_rvv, zve32x
vssseg6e8.v v8, (a0), a1
ret
endfunc
+
+func ff_h264_h_loop_filter_luma_mbaff_8_rvv, zve32x
+ vsetivli zero, 4, e16, m1, ta, ma
+ vle8.v v4, (a4)
+ li t0, 0x0101
+ vzext.vf2 v6, v4
+ addi a0, a0, -3
+ vmul.vx v6, v6, t0 # tc_orig
+ vsetivli zero, 8, e8, m1, ta, ma
+ vlsseg6e8.v v8, (a0), a1
+ jal t0, ff_h264_loop_filter_luma_8_rvv
+ vssseg6e8.v v8, (a0), a1
+ ret
+endfunc
--
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".
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-07-01 15:23 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-06-30 9:05 [FFmpeg-devel] [PATCH 1/2] lavc/h264dsp: R-V V 8-bit luma loop filter Rémi Denis-Courmont
2024-06-30 9:05 ` [FFmpeg-devel] [PATCH 2/2] lavc/h264dsp: R-V V 8-bit MBAFF " Rémi Denis-Courmont
2024-07-01 15:23 [FFmpeg-devel] [PATCHv2 1/2] lavc/h264dsp: R-V V 8-bit luma " Rémi Denis-Courmont
2024-07-01 15:23 ` [FFmpeg-devel] [PATCH 2/2] lavc/h264dsp: R-V V 8-bit MBAFF " Rémi Denis-Courmont
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