From: "Martin Storsjö" <martin@martin.st> To: FFmpeg development discussions and patches <ffmpeg-devel@ffmpeg.org> Cc: Ben Avison <bavison@riscosopen.org> Subject: Re: [FFmpeg-devel] [PATCH 01/10] checkasm: Add vc1dsp in-loop deblocking filter tests Date: Tue, 29 Mar 2022 15:24:57 +0300 (EEST) Message-ID: <8ac45f-b8dd-3b1e-8335-a8791bdca99e@martin.st> (raw) In-Reply-To: <20220325185257.513933-2-bavison@riscosopen.org> On Fri, 25 Mar 2022, Ben Avison wrote: > Note that the benchmarking results for these functions are highly dependent > upon the input data. Therefore, each function is benchmarked twice, > corresponding to the best and worst case complexity of the reference C > implementation. The performance of a real stream decode will fall somewhere > between these two extremes. Great idea to do separate benchmarking of the best/worst cases like this - that is usually a recurring issue in benchmarking loop filters. (Another issue with benchmarking of loop filters, is that the same function is run repeatedly without resetting the input data inbetween - so depending on the exact setup, it's possible that the decision about whether to filter or not is taken differently in the first and last runs. But this implementation seems very good in that aspect!) > +++ b/tests/checkasm/vc1dsp.c > @@ -0,0 +1,94 @@ > +/* > + * Copyright (c) 2022 Ben Avison > + * > + * This file is part of FFmpeg. > + * > + * FFmpeg is free software; you can redistribute it and/or modify > + * it under the terms of the GNU General Public License as published by > + * the Free Software Foundation; either version 2 of the License, or > + * (at your option) any later version. > + * > + * FFmpeg is distributed in the hope that it will be useful, > + * but WITHOUT ANY WARRANTY; without even the implied warranty of > + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the > + * GNU General Public License for more details. > + * > + * You should have received a copy of the GNU General Public License along > + * with FFmpeg; if not, write to the Free Software Foundation, Inc., > + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. > + */ > + > +#include <string.h> > + > +#include "checkasm.h" > + > +#include "libavcodec/vc1dsp.h" > + > +#include "libavutil/common.h" > +#include "libavutil/internal.h" > +#include "libavutil/intreadwrite.h" > +#include "libavutil/mem_internal.h" > + > +#define RANDOMIZE_BUFFER8_MID_WEIGHTED(name, size) \ > + do { \ > + uint8_t *p##0 = name##0, *p##1 = name##1; \ > + int i = (size); \ > + while (i-- > 0) { \ > + int x = 0x80 | (rnd() & 0x7F); \ > + x >>= rnd() % 9; \ > + if (rnd() & 1) \ > + x = -x; \ > + *p##1++ = *p##0++ = 0x80 + x; \ > + } \ > + } while (0) > + > +#define CHECK_LOOP_FILTER(func) \ > + do { \ > + if (check_func(h.func, "vc1dsp." #func)) { \ > + declare_func_emms(AV_CPU_FLAG_MMX, void, uint8_t *, int, int); \ > + for (int count = 1000; count > 0; --count) { \ > + int pq = rnd() % 31 + 1; \ > + RANDOMIZE_BUFFER8_MID_WEIGHTED(filter_buf, 24 * 24); \ > + call_ref(filter_buf0 + 4 * 24 + 4, 24, pq); \ > + call_new(filter_buf1 + 4 * 24 + 4, 24, pq); \ > + if (memcmp(filter_buf0, filter_buf1, 24 * 24)) \ > + fail(); \ > + } \ > + } \ > + for (int j = 0; j < 24; ++j) \ > + for (int i = 0; i < 24; ++i) \ > + filter_buf1[24*j + i] = 0x60 + 0x40 * (i >= 4 && j >= 4); \ > + if (check_func(h.func, "vc1dsp." #func "_bestcase")) { \ > + declare_func_emms(AV_CPU_FLAG_MMX, void, uint8_t *, int, int); \ > + bench_new(filter_buf1 + 4 * 24 + 4, 24, 1); \ > + (void) checked_call; \ > + } \ > + if (check_func(h.func, "vc1dsp." #func "_worstcase")) { \ > + declare_func_emms(AV_CPU_FLAG_MMX, void, uint8_t *, int, int); \ > + bench_new(filter_buf1 + 4 * 24 + 4, 24, 31); \ > + (void) checked_call; \ > + } \ > + } while (0) > + > +void checkasm_check_vc1dsp(void) > +{ > + /* Deblocking filter buffers are big enough to hold a 16x16 block, > + * plus 4 rows/columns above/left to hold filter inputs (depending on > + * whether v or h neighbouring block edge) plus 4 rows/columns > + * right/below to catch write overflows */ > + LOCAL_ALIGNED_4(uint8_t, filter_buf0, [24 * 24]); > + LOCAL_ALIGNED_4(uint8_t, filter_buf1, [24 * 24]); > + > + VC1DSPContext h; > + > + ff_vc1dsp_init(&h); > + > + CHECK_LOOP_FILTER(vc1_v_loop_filter4); > + CHECK_LOOP_FILTER(vc1_h_loop_filter4); > + CHECK_LOOP_FILTER(vc1_v_loop_filter8); > + CHECK_LOOP_FILTER(vc1_h_loop_filter8); > + CHECK_LOOP_FILTER(vc1_v_loop_filter16); > + CHECK_LOOP_FILTER(vc1_h_loop_filter16); > + > + report("loop_filter"); > +} This looks great to me overall. I think it'd be nice to unmacro CHECK_LOOP_FILTER though and make a separate check_loopfilter() function like in vp8dsp.c instead, and move the declare_func_emms outside of check_func() as you concluded. // Martin _______________________________________________ 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:[~2022-03-29 12:25 UTC|newest] Thread overview: 55+ messages / expand[flat|nested] mbox.gz Atom feed top 2022-03-17 18:58 [FFmpeg-devel] [PATCH 0/6] avcodec/vc1: Arm optimisations Ben Avison 2022-03-17 18:58 ` [FFmpeg-devel] [PATCH 1/6] avcodec/vc1: Arm 64-bit NEON deblocking filter fast paths Ben Avison 2022-03-17 18:58 ` [FFmpeg-devel] [PATCH 2/6] avcodec/vc1: Arm 32-bit " Ben Avison 2022-03-17 18:58 ` [FFmpeg-devel] [PATCH 3/6] avcodec/vc1: Arm 64-bit NEON inverse transform " Ben Avison 2022-03-17 18:58 ` [FFmpeg-devel] [PATCH 4/6] avcodec/idctdsp: Arm 64-bit NEON block add and clamp " Ben Avison 2022-03-17 18:58 ` [FFmpeg-devel] [PATCH 5/6] avcodec/blockdsp: Arm 64-bit NEON block clear " Ben Avison 2022-03-17 18:58 ` [FFmpeg-devel] [PATCH 6/6] avcodec/vc1: Introduce fast path for unescaping bitstream buffer Ben Avison 2022-03-18 19:10 ` Andreas Rheinhardt 2022-03-21 15:51 ` Ben Avison 2022-03-21 20:44 ` Martin Storsjö 2022-03-19 23:06 ` [FFmpeg-devel] [PATCH 0/6] avcodec/vc1: Arm optimisations Martin Storsjö 2022-03-19 23:07 ` Martin Storsjö 2022-03-21 17:37 ` Ben Avison 2022-03-21 22:29 ` Martin Storsjö 2022-03-25 18:52 ` [FFmpeg-devel] [PATCH v2 00/10] " Ben Avison 2022-03-25 18:52 ` [FFmpeg-devel] [PATCH 01/10] checkasm: Add vc1dsp in-loop deblocking filter tests Ben Avison 2022-03-25 22:53 ` Martin Storsjö 2022-03-28 18:28 ` Ben Avison 2022-03-29 11:47 ` Martin Storsjö 2022-03-29 12:24 ` Martin Storsjö [this message] 2022-03-29 12:43 ` Martin Storsjö 2022-03-25 18:52 ` [FFmpeg-devel] [PATCH 02/10] checkasm: Add vc1dsp inverse transform tests Ben Avison 2022-03-29 12:41 ` Martin Storsjö 2022-03-25 18:52 ` [FFmpeg-devel] [PATCH 03/10] checkasm: Add idctdsp add/put-pixels-clamped tests Ben Avison 2022-03-29 13:13 ` Martin Storsjö 2022-03-29 19:56 ` Martin Storsjö 2022-03-29 20:22 ` Ben Avison 2022-03-29 20:30 ` Martin Storsjö 2022-03-25 18:52 ` [FFmpeg-devel] [PATCH 04/10] avcodec/vc1: Introduce fast path for unescaping bitstream buffer Ben Avison 2022-03-29 20:37 ` Martin Storsjö 2022-03-31 13:58 ` Ben Avison 2022-03-31 14:07 ` Martin Storsjö 2022-03-25 18:52 ` [FFmpeg-devel] [PATCH 05/10] avcodec/vc1: Arm 64-bit NEON deblocking filter fast paths Ben Avison 2022-03-30 12:35 ` Martin Storsjö 2022-03-31 15:15 ` Ben Avison 2022-03-31 21:21 ` Martin Storsjö 2022-03-25 18:52 ` [FFmpeg-devel] [PATCH 06/10] avcodec/vc1: Arm 32-bit " Ben Avison 2022-03-25 19:27 ` Lynne 2022-03-25 19:49 ` Martin Storsjö 2022-03-25 19:55 ` Lynne 2022-03-30 12:37 ` Martin Storsjö 2022-03-30 13:03 ` Martin Storsjö 2022-03-25 18:52 ` [FFmpeg-devel] [PATCH 07/10] avcodec/vc1: Arm 64-bit NEON inverse transform " Ben Avison 2022-03-30 13:49 ` Martin Storsjö 2022-03-30 14:01 ` Martin Storsjö 2022-03-31 15:37 ` Ben Avison 2022-03-31 21:32 ` Martin Storsjö 2022-03-25 18:52 ` [FFmpeg-devel] [PATCH 08/10] avcodec/idctdsp: Arm 64-bit NEON block add and clamp " Ben Avison 2022-03-30 14:14 ` Martin Storsjö 2022-03-31 16:47 ` Ben Avison 2022-03-31 21:42 ` Martin Storsjö 2022-03-25 18:52 ` [FFmpeg-devel] [PATCH 09/10] avcodec/vc1: Arm 64-bit NEON unescape fast path Ben Avison 2022-03-30 14:35 ` Martin Storsjö 2022-03-25 18:52 ` [FFmpeg-devel] [PATCH 10/10] avcodec/vc1: Arm 32-bit " Ben Avison 2022-03-30 14:35 ` Martin Storsjö
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=8ac45f-b8dd-3b1e-8335-a8791bdca99e@martin.st \ --to=martin@martin.st \ --cc=bavison@riscosopen.org \ --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