Giter VIP home page Giter VIP logo

Comments (6)

kjbracey avatar kjbracey commented on June 4, 2024

While in there, just noticed that blkCnt is 16-bit for the q15 function, in a probable cut-and-paste error, limiting you to 512K values.

Other notes:

  • Using blkCnt and having a tail section seems redundant anyway - wouldn't a simple counter and single predicated loop work better? Produces better code on armclang. And it's what the non-no_idx do.
  • curExtremeValVec should be initialised via vdupq_n_u16
  • maxValue would be better uint16_t, as it gets the unsigned result from vmaxvq then you can finish with *pResult = __USAT(maxValue, 15).

from cmsis-dsp.

christophe0606 avatar christophe0606 commented on June 4, 2024

@kjbracey Thanks for good feedback. I'll have a look today.

from cmsis-dsp.

kjbracey avatar kjbracey commented on June 4, 2024

Just to reassure you - I'm not planning on going through and critiquing all the implementations randomly!

I did happen to see this in my debug output, so ended up staring at it. (On audio data I'd just expanded to be full-range - I noticed the scale accuracy problem while doing that).

from cmsis-dsp.

christophe0606 avatar christophe0606 commented on June 4, 2024

@kjbracey No worry. It is good feedback and helps improve the library.

from cmsis-dsp.

christophe0606 avatar christophe0606 commented on June 4, 2024

It should be corrected now.

from cmsis-dsp.

kjbracey avatar kjbracey commented on June 4, 2024

Looks good by inspection. Only thought is that clip_q63_to_q31 is overkill.

Could do it with *pResult = maxValue - (maxValue >> 31); (That's a general "clip_u31_to_q31").

Although I guess the compiler might manage to optimise out most of the 64-bitness anyway, so the remaining clip shouldn't be much worse.

from cmsis-dsp.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.