commit-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Commit-gnuradio] git://gnuradio.org/gnuradio branch, master, updated. v


From: git version control
Subject: [Commit-gnuradio] git://gnuradio.org/gnuradio branch, master, updated. v3.5.0rc0-54-ga6b5389
Date: Thu, 1 Dec 2011 21:21:57 +0000 (UTC)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "git://gnuradio.org/gnuradio".

The branch, master has been updated
       via  a6b5389139341784edf30d512aa42360d3a8cf02 (commit)
       via  955a39bf4bfa67e6af4000d9df865518fbeedbfa (commit)
       via  bb8f6c8115d39205ea566bf6b70f391f83168a4c (commit)
       via  b61e2276d60386143874cc884572e0dc6697ea73 (commit)
       via  627889415a0749de29c3b81308bc67302d5a3ba3 (commit)
       via  de8845266b454e5f94d23799d23ccd50e2af8a8f (commit)
       via  b0b474be32e94ec72fc982689464ecb3828fc778 (commit)
       via  9700623365f4dd322989d57c93bf2f90e12f19eb (commit)
       via  7695ca06f1b565723f3fc302d7b7818e93d86a57 (commit)
       via  73727e316ae9addf8ffbc3b3473ace15d993d7b8 (commit)
       via  488f0c614f0e951314c686e7f168bc62cea250d5 (commit)
      from  d56564f5e3d9ccefc9ac34c81dc8d061298301e7 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit a6b5389139341784edf30d512aa42360d3a8cf02
Author: Josh Blum <address@hidden>
Date:   Thu Dec 1 09:21:11 2011 -0500

    volk: squashed changes 32f_s32f_multiply_32f_a 32fc_x2_dot_prod_32fc_u

commit 955a39bf4bfa67e6af4000d9df865518fbeedbfa
Author: Nick Foster <address@hidden>
Date:   Mon Nov 28 19:21:18 2011 -0800

    Volk: since we have a profiler, we don't need to iterate during QA, so this 
can go much faster
    
    Conflicts:
    
        volk/lib/testqa.cc

commit bb8f6c8115d39205ea566bf6b70f391f83168a4c
Author: Nick Foster <address@hidden>
Date:   Mon Nov 28 19:16:57 2011 -0800

    Volk: remove index max horizontal star from test, it shouldn't be there 
either

commit b61e2276d60386143874cc884572e0dc6697ea73
Author: Nick Foster <address@hidden>
Date:   Mon Nov 28 18:57:07 2011 -0800

    Volk: bring QA test changes into the profiler as well

commit 627889415a0749de29c3b81308bc67302d5a3ba3
Author: Nick Foster <address@hidden>
Date:   Mon Nov 28 18:42:35 2011 -0800

    Volk: fix 32fc dot product test. more investigation into ASM64 and ASM32 
impls is needed to determine if these have robust tail cases or not.
    also fixed max_star test by removing it -- can't return ptrs in current 
test framework, needs custom test.

commit de8845266b454e5f94d23799d23ccd50e2af8a8f
Author: Nick Foster <address@hidden>
Date:   Mon Nov 28 18:24:13 2011 -0800

    Volk: fix volk_32fc_s32f_magnitude_16i_a Orc implementation for saturating 
magnitudes
    
    Conflicts:
    
        volk/lib/testqa.cc

commit b0b474be32e94ec72fc982689464ecb3828fc778
Author: Nick Foster <address@hidden>
Date:   Mon Nov 28 18:02:19 2011 -0800

    Volk: fix volk_32f_x2_dot_prod_32f_u test (threshold increase)

commit 9700623365f4dd322989d57c93bf2f90e12f19eb
Author: Nick Foster <address@hidden>
Date:   Wed Nov 9 13:21:00 2011 -0800

    Volk: whoops

commit 7695ca06f1b565723f3fc302d7b7818e93d86a57
Author: Nick Foster <address@hidden>
Date:   Wed Nov 9 12:46:00 2011 -0800

    Volk: 32f_s32f_multiply_32f

commit 73727e316ae9addf8ffbc3b3473ace15d993d7b8
Author: Nick Foster <address@hidden>
Date:   Wed Nov 9 11:35:17 2011 -0800

    Volk: add 32fc_s32fc_multiply_32fc to profiler

commit 488f0c614f0e951314c686e7f168bc62cea250d5
Author: Nick Foster <address@hidden>
Date:   Wed Nov 9 11:32:47 2011 -0800

    Volk: added 32fc x scalar multiply, implemented in Orc & generic. Orc/SSE 
tested 10x faster than generic.

-----------------------------------------------------------------------

Summary of changes:
 volk/apps/volk_profile.cc                          |   10 +-
 volk/include/volk/volk_32f_s32f_multiply_32f_a.h   |   44 ++++++
 .../include/volk/volk_32fc_s32fc_multiply_32fc_a.h |   46 ++++++
 volk/include/volk/volk_32fc_x2_dot_prod_32fc_u.h   |  116 ++++++++++++++
 volk/lib/testqa.cc                                 |  159 ++++++++++----------
 volk/orc/volk_32f_s32f_multiply_32f_a_orc_impl.orc |    5 +
 .../volk_32fc_s32f_magnitude_16i_a_orc_impl.orc    |   10 +-
 ...> volk_32fc_s32fc_multiply_32fc_a_orc_impl.orc} |    8 +-
 8 files changed, 305 insertions(+), 93 deletions(-)
 create mode 100644 volk/include/volk/volk_32f_s32f_multiply_32f_a.h
 create mode 100644 volk/include/volk/volk_32fc_s32fc_multiply_32fc_a.h
 create mode 100644 volk/include/volk/volk_32fc_x2_dot_prod_32fc_u.h
 create mode 100644 volk/orc/volk_32f_s32f_multiply_32f_a_orc_impl.orc
 copy volk/orc/{volk_32fc_x2_multiply_32fc_a_orc_impl.orc => 
volk_32fc_s32fc_multiply_32fc_a_orc_impl.orc} (63%)


hooks/post-receive
-- 
git://gnuradio.org/gnuradio



reply via email to

[Prev in Thread] Current Thread [Next in Thread]