From: "Rémi Denis-Courmont" <remi@remlab.net> To: ffmpeg-devel@ffmpeg.org Subject: Re: [FFmpeg-devel] [PATCH 2/2] checkasm/vc1dsp: check the not-in-place block content Date: Tue, 11 Jun 2024 18:34:12 +0300 Message-ID: <1919408.alaWOGa21v@basile.remlab.net> (raw) In-Reply-To: <1ee9115c-a686-44c3-b5d4-6fb5e56f75a6@gmail.com> Le tiistaina 11. kesäkuuta 2024, 18.08.51 EEST James Almer a écrit : > On 6/11/2024 11:55 AM, Rémi Denis-Courmont wrote: > > This seems to cause issues in FATE for 4x4 and 4x8 transforms. But then > > again, FATE does not seem to care in the 8x4 case. > > > > Note that AArch64 NEON code is known to fail this test. > > --- > > > > tests/checkasm/vc1dsp.c | 6 ++++-- > > 1 file changed, 4 insertions(+), 2 deletions(-) > > > > diff --git a/tests/checkasm/vc1dsp.c b/tests/checkasm/vc1dsp.c > > index f18f0f8251..2cc6785a0c 100644 > > --- a/tests/checkasm/vc1dsp.c > > +++ b/tests/checkasm/vc1dsp.c > > @@ -317,11 +317,13 @@ static void check_inv_trans_adding(void) > > > > for (int j = 0; j < tests[t].height; ++j) > > > > for (int i = 0; i < tests[t].width; ++i) { > > > > int idx = j * 8 + i; > > > > - inv_trans_in1[idx] = inv_trans_in0[idx] = coeffs->d[j > > * tests[t].width + i]; + inv_trans_in0[idx] = > > coeffs->d[j * tests[t].width + i];> > > } > > > > + memcpy(inv_trans_in1, inv_trans_in0, 8 * 8 * 2); > > Is there any gain doing this? Checking that assembler does not write out of bounds in the later memcmp(). > > call_ref(inv_trans_out0 + 24 + 8, 24, inv_trans_in0); > > call_new(inv_trans_out1 + 24 + 8, 24, inv_trans_in1); > > > > - if (memcmp(inv_trans_out0, inv_trans_out1, 10 * 24)) > > + if (memcmp(inv_trans_in0, inv_trans_in1, 8 * 8 * 2) || > > nit: sizeof (int16_t) Yes well this code cannot be merged because we (at least I) do not know if it is correct, and it breaks AArch64. > > + memcmp(inv_trans_out0, inv_trans_out1, 10 * 24)) > > > > fail(); > > > > bench_new(inv_trans_out1 + 24 + 8, 24, inv_trans_in1 + 8); > > av_free(coeffs); > > _______________________________________________ > 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". -- 雷米‧德尼-库尔蒙 http://www.remlab.net/ _______________________________________________ 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".
prev parent reply other threads:[~2024-06-11 15:34 UTC|newest] Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top 2024-06-10 19:03 [FFmpeg-devel] [PATCH] lavc/vc1dsp: match C block layout in inv_trans_4x4_rvv Rémi Denis-Courmont 2024-06-10 19:20 ` [FFmpeg-devel] [PATCH] lavc/vc1dsp: match C block layout in inv_trans_4x8_rvv Rémi Denis-Courmont 2024-06-11 12:09 ` Ronald S. Bultje 2024-06-11 12:19 ` Rémi Denis-Courmont 2024-06-11 12:23 ` James Almer 2024-06-11 14:53 ` Rémi Denis-Courmont 2024-06-11 14:55 ` [FFmpeg-devel] [PATCH 1/2] lavc/vc1dsp: match C block content in inv_trans_8x4_rvv Rémi Denis-Courmont 2024-06-11 14:55 ` [FFmpeg-devel] [PATCH 2/2] checkasm/vc1dsp: check the not-in-place block content Rémi Denis-Courmont 2024-06-11 15:08 ` James Almer 2024-06-11 15:34 ` Rémi Denis-Courmont [this message]
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=1919408.alaWOGa21v@basile.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