Skip to content

Commit

Permalink
fix the compile issue caused by the incorrect name of round-up macro (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
AlbertHuang-CPU authored Feb 25, 2025
1 parent aad6463 commit 0cb0f50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Testing/Source/Benchmarks/FIRQ31.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ static __ALIGNED(8) q31_t coeffArray[64];
samples.reload(FIRQ31::SAMPLES1_Q31_ID,mgr,this->nbSamples);
coefs.reload(FIRQ31::COEFS1_Q31_ID,mgr,this->nbTaps);

state.create(2*ROUND_UP(this->nbSamples,4) + this->nbSamples + this->nbTaps - 1,FIRQ31::STATE_Q31_ID,mgr);
state.create(2*ARM_ROUND_UP(this->nbSamples,4) + this->nbSamples + this->nbTaps - 1,FIRQ31::STATE_Q31_ID,mgr);
output.create(this->nbSamples,FIRQ31::OUT_SAMPLES_Q31_ID,mgr);

switch(id)
Expand Down

0 comments on commit 0cb0f50

Please sign in to comment.