Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
 help / color / mirror / Atom feed
From: "Rémi Denis-Courmont" <remi@remlab.net>
To: ffmpeg-devel@ffmpeg.org
Subject: Re: [FFmpeg-devel] [PATCH] checkasm/lpc: test compute_autocorr
Date: Mon, 11 Dec 2023 22:49:26 +0200
Message-ID: <2178218.ea0UpjcFI5@basile.remlab.net> (raw)
In-Reply-To: <20231211204103.33927-1-remi@remlab.net>

Le maanantaina 11. joulukuuta 2023, 22.41.03 EET Rémi Denis-Courmont a écrit :
> ---
>  tests/checkasm/lpc.c | 36 ++++++++++++++++++++++++++++++++++++
>  1 file changed, 36 insertions(+)
> 
> diff --git a/tests/checkasm/lpc.c b/tests/checkasm/lpc.c
> index 592e34c03d..8e92a9e1b4 100644
> --- a/tests/checkasm/lpc.c
> +++ b/tests/checkasm/lpc.c
> @@ -57,10 +57,40 @@ static void test_window(int len)
>      bench_new(src, len, dst1);
>  }
> 
> +static void test_compute_autocorr(int lag)
> +{
> +    LOCAL_ALIGNED(16, double, src, [5000]);
> +    LOCAL_ALIGNED(16, double, dst0, [32]);
> +    LOCAL_ALIGNED(16, double, dst1, [32]);
> +    const size_t len = 5000;
> +
> +    declare_func(void, const double *in, ptrdiff_t len, int lag, double
> *out); +
> +    for (size_t i = 0; i < len; i++) {
> +        src[i] = (double)rnd() / (double)UINT_MAX;

Not sure if we should test negative numbers here.

> +    }
> +
> +    call_ref(src, len, lag, dst0);
> +    call_new(src, len, lag, dst1);

Presumably src needs to be offset by one element, as the first iteration of the 
loop reads at offset minus one (in C code: sum1 += ...).

> +
> +    for (size_t i = 0; i < lag; i++) {
> +        if (!double_near_abs_eps(dst0[i], dst1[i], EPS)) {
> +            fprintf(stderr, "%zu: %- .12f - %- .12f = % .12g\n",
> +                    i, dst0[i], dst1[i], dst0[i] - dst1[i]);
> +            fail();
> +            break;
> +        }
> +    }
> +
> +    bench_new(src, len, lag, dst1);
> +}
> +
>  void checkasm_check_lpc(void)
>  {
>      LPCContext ctx;
>      int len = rnd() % 5000;
> +    static const int lags[] = { 10, 30, 32 };
> +
>      ff_lpc_init(&ctx, 32, 16, FF_LPC_TYPE_DEFAULT);
> 
>      if (check_func(ctx.lpc_apply_welch_window, "apply_welch_window_even"))
> { @@ -73,5 +103,11 @@ void checkasm_check_lpc(void)
>      }
>      report("apply_welch_window_odd");
> 
> +    for (size_t i = 0; i < FF_ARRAY_ELEMS(lags); i++) {
> +        if (check_func(ctx.lpc_compute_autocorr, "autocorr_%d", lags[i]))
> +            test_compute_autocorr(lags[i]);
> +        report("compute_autocorr_%d", lags[i]);
> +    }
> +
>      ff_lpc_end(&ctx);
>  }


-- 
雷米‧德尼-库尔蒙
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".

  reply	other threads:[~2023-12-11 20:49 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-12-11 20:41 Rémi Denis-Courmont
2023-12-11 20:49 ` Rémi Denis-Courmont [this message]
2024-05-25 11:58 Rémi Denis-Courmont
2024-05-25 13:33 ` James Almer
2024-05-26 20:09 ` 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=2178218.ea0UpjcFI5@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