Displaying 7 results from an estimated 7 matches for "rfcv4".
Did you mean:
rfcv3
2014 Dec 18
0
[RFC PATCH v3] armv7: celt_pitch_xcorr: Introduce ARM neon intrinsics
Hi Timothy,
I responded to your feedback before I started on RFCv3.. and took your
silence as approval :).. I guess that email got lost in your inbox sea
some where.. so re-posting the responses.
So, this time, I will wait for your ack before I proceed to RFCv4..
Although.. after all these reviews.. I may just submit it as PATCHv1..
since the patch is almost there and there are no major objections any
more..
Regards,
Vish
On 17 December 2014 at 23:59, Timothy B. Terriberry <tterribe at xiph.org> wrote:
>
> Almost there... just a few nits le...
2014 Dec 18
2
[RFC PATCH v3] armv7: celt_pitch_xcorr: Introduce ARM neon intrinsics
Almost there... just a few nits left.
Viswanath Puttagunta wrote:
> +if OPUS_ARM_NEON_INTR
> +CELT_SOURCES += $(CELT_SOURCES_ARM_NEON_INTR)
> +OPUS_ARM_NEON_INTR_CPPFLAGS = -mfpu=neon -O3
I'll repeat: I don't think you should change the optimization level here.
> + /* Just unroll the rest of the loop */
I saw you decided to keep this unrolled, but you didn't actually
2015 Feb 09
10
[PATCH RFC v5 net-next 0/6] enable tx interrupts for virtio-net
...ticed TCP_RR on 1 vcpu 1
queue guest.
- CPU utilization is increased in some cases.
- All other cases, tx interrupts can perform equal or better than
orphaning (much more obvious when testing small packet transmission
as a byproduct since socket accounting works for TCP packet).
Changes from RFCv4:
- fix the virtqueue_enable_cb_delayed() return value when only 1
buffer is pending.
- try to disable callbacks by publish event index in
virtqueue_disable_cb(). Tests shows about 2% - 3% improvement on
multiple sessions of TCP_RR.
- Revert some of Micahel's tweaks from RFC v1 (see patch...
2015 Feb 09
10
[PATCH RFC v5 net-next 0/6] enable tx interrupts for virtio-net
...ticed TCP_RR on 1 vcpu 1
queue guest.
- CPU utilization is increased in some cases.
- All other cases, tx interrupts can perform equal or better than
orphaning (much more obvious when testing small packet transmission
as a byproduct since socket accounting works for TCP packet).
Changes from RFCv4:
- fix the virtqueue_enable_cb_delayed() return value when only 1
buffer is pending.
- try to disable callbacks by publish event index in
virtqueue_disable_cb(). Tests shows about 2% - 3% improvement on
multiple sessions of TCP_RR.
- Revert some of Micahel's tweaks from RFC v1 (see patch...
2015 May 25
8
[RFC V7 PATCH 0/7] enable tx interrupts for virtio-net
...ing of tx interrupt only for host with interrupt
coalescing. This can reduce the performance impact for older host.
- Avoid expensive dividing in vhost code.
- Try to avoid the overhead of timer callback by using mutex_trylock()
and inject the irq directly from the timer callback.
Changes from RFCv4:
- fix the virtqueue_enable_cb_delayed() return value when only 1
buffer is pending.
- try to disable callbacks by publish event index in
virtqueue_disable_cb(). Tests shows about 2% - 3% improvement on
multiple sessions of TCP_RR.
- Revert some of Micahel's tweaks from RFC v1 (see patch...
2015 May 25
8
[RFC V7 PATCH 0/7] enable tx interrupts for virtio-net
...ing of tx interrupt only for host with interrupt
coalescing. This can reduce the performance impact for older host.
- Avoid expensive dividing in vhost code.
- Try to avoid the overhead of timer callback by using mutex_trylock()
and inject the irq directly from the timer callback.
Changes from RFCv4:
- fix the virtqueue_enable_cb_delayed() return value when only 1
buffer is pending.
- try to disable callbacks by publish event index in
virtqueue_disable_cb(). Tests shows about 2% - 3% improvement on
multiple sessions of TCP_RR.
- Revert some of Micahel's tweaks from RFC v1 (see patch...
2015 Mar 18
5
[RFC PATCH v1 0/4] Enable aarch64 intrinsics/Ne10
...wip branch of all latest patches at
https://git.linaro.org/people/viswanath.puttagunta/opus.git
Branch: rfcv1_final_armv8
aarch64: Enable intrinsics for aarch64
- enables intrinsics (includes Ne10) optimizations for
aarch64.
armv7(float): Optimize encode usecase using NE10 library
- Changes from RFCv4 [1]: Caught compile issue while
enabling armv8 in celt/arm/mdct_arm.h
armv7(float): Optimize decode usecase using NE10 library
- Changes from RFCv1 [2]: Same compile issue propagated
so fixed it here as well
Intrinsics/RTCD related fixes. Mostly x86.
- Changes from RFCv2 [3]: While space rem...