Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
 help / color / mirror / Atom feed
From: Anton Khirnov <anton@khirnov.net>
To: FFmpeg development discussions and patches <ffmpeg-devel@ffmpeg.org>
Subject: Re: [FFmpeg-devel] [PATCH] lavc/lpc: R-V V apply_welch_window
Date: Mon, 11 Dec 2023 10:11:28 +0100
Message-ID: <170228588879.8914.3876756550532270336@lain.khirnov.net> (raw)
In-Reply-To: <20231208174652.21299-1-remi@remlab.net>

Quoting Rémi Denis-Courmont (2023-12-08 18:46:51)
> +#if __riscv_xlen >= 64
> +func ff_lpc_apply_welch_window_rvv, zve64d
> +        vsetvli t0, zero, e64, m8, ta, ma
> +        vid.v   v0
> +        addi    t2, a1, -1
> +        vfcvt.f.xu.v v0, v0
> +        li      t3, 2
> +        fcvt.d.l ft2, t2
> +        srai    t1, a1, 1
> +        fcvt.d.l ft3, t3
> +        li      t4, 1
> +        fdiv.d  ft0, ft3, ft2    # ft0 = c = 2. / (len - 1)
> +        fcvt.d.l fa1, t4         # fa1 = 1.
> +        fsub.d  ft1, ft0, fa1
> +        vfrsub.vf v0, v0, ft1    # v0[i] = c - i - 1.
> +1:
> +        vsetvli t0, t1, e64, m8, ta, ma
> +        vfmul.vv v16, v0, v0  # no fused multipy-add as v0 is reused
> +        sub     t1, t1, t0
> +        vle32.v v8, (a0)
> +        fcvt.d.l ft2, t0
> +        vfrsub.vf v16, v16, fa1  # v16 = 1. - w * w
> +        sh2add  a0, t0, a0
> +        vsetvli zero, zero, e32, m4, ta, ma
> +        vfwcvt.f.x.v v24, v8
> +        vsetvli zero, zero, e64, m8, ta, ma
> +        vfsub.vf v0, v0, ft2     # v0 -= vl
> +        vfmul.vv v8, v24, v16
> +        vse64.v v8, (a2)
> +        sh3add  a2, t0, a2
> +        bnez    t1, 1b
> +
> +        andi    t1, a1, 1
> +        beqz    t1, 2f
> +
> +        sd      zero, (a2)
> +        addi    a0, a0, 4
> +        addi    a2, a2, 8
> +2:
> +        vsetvli t0, zero, e64, m8, ta, ma
> +        vid.v   v0
> +        srai    t1, a1, 1
> +        vfcvt.f.xu.v v0, v0
> +        fcvt.d.l ft1, t1
> +        fsub.d  ft1, ft0, ft1    # ft1 = c - (len / 2)
> +        vfadd.vf v0, v0, ft1     # v0[i] = c - (len / 2) + i
> +3:
> +        vsetvli t0, t1, e64, m8, ta, ma
> +        vfmul.vv v16, v0, v0
> +        sub     t1, t1, t0
> +        vle32.v v8, (a0)
> +        fcvt.d.l ft2, t0
> +        vfrsub.vf v16, v16, fa1  # v16 = 1. - w * w
> +        sh2add  a0, t0, a0
> +        vsetvli zero, zero, e32, m4, ta, ma
> +        vfwcvt.f.x.v v24, v8
> +        vsetvli zero, zero, e64, m8, ta, ma
> +        vfadd.vf v0, v0, ft2     # v0 += vl
> +        vfmul.vv v8, v24, v16
> +        vse64.v v8, (a2)
> +        sh3add  a2, t0, a2
> +        bnez    t1, 3b

I think it'd look a lot less like base64 < /dev/random if you vertically
aligned the first operands.

-- 
Anton Khirnov
_______________________________________________
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  9:11 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-12-08 17:46 Rémi Denis-Courmont
2023-12-11  9:11 ` Anton Khirnov [this message]
2023-12-11  9:50   ` Rémi Denis-Courmont
2023-12-11  9:57     ` Anton Khirnov
2023-12-11 10:03       ` 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=170228588879.8914.3876756550532270336@lain.khirnov.net \
    --to=anton@khirnov.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