Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Audio: Component: HiFi5 implementation of functions. #8695

Merged
merged 3 commits into from
Mar 8, 2024

Commits on Mar 8, 2024

  1. Audio: Component: Add HiFi5 implementation of audio_stream_copy

    Add HiFi5 implementation if function audio_stream_copy, compared
    with HiFi3 version, the HiFi5 method can save about 29% cycles.
    
    Signed-off-by: Andrula Song <andrula.song@intel.com>
    andrula-song committed Mar 8, 2024
    Configuration menu
    Copy the full SHA
    568a4c7 View commit details
    Browse the repository at this point in the history
  2. Audio: Component: Fix the potential risks of HiFi3 audio_stream_copy

    Use while (shorts > 0) instead of while (short) to reduce the forever
    loop risk.
    
    Use general instruction AE_MIN32 replace AE_MIN_32_signed which is an
    internal proto intended for Xtensa compiler.
    
    Signed-off-by: Andrula Song <andrula.song@intel.com>
    andrula-song committed Mar 8, 2024
    Configuration menu
    Copy the full SHA
    cb20c2f View commit details
    Browse the repository at this point in the history
  3. Audio: Component: Add HiFi5 implementation of cir_buf_copy.

    Add HiFi3 & HiFi5 implementation of function cir_buf_copy.
    Compared with generic C version, the HiFi3 version can save
    about 3% cycles and HiFi5 version can save about 40% cycles.
    
    Signed-off-by: Andrula Song <andrula.song@intel.com>
    andrula-song committed Mar 8, 2024
    Configuration menu
    Copy the full SHA
    124eb29 View commit details
    Browse the repository at this point in the history