Home
last modified time | relevance | path

Searched refs:FIR (Results 1 – 16 of 16) sorted by relevance

/cmsis-dsp-latest/Testing/PatternGeneration/
DGenAll.py10 import FIR
27 FIR.generatePatterns()
/cmsis-dsp-latest/Testing/
DaddAllBenchToDatabase.bat5 echo "FIR"
6 python addToDB.py FIR
DaddAllBenchToRegressionDatabase.bat5 echo "FIR"
6 python addToRegDB.py FIR
Dbench_f16.txt130 group FIR {
131 class = FIR
132 folder = FIR
134 suite FIR F16 {
159 FIR Filter:test_fir_f16
Dbench.txt451 group FIR {
452 class = FIR
453 folder = FIR
455 suite FIR F32 {
480 FIR Filter:test_fir_f32
486 suite FIR Q31 {
511 FIR Filter:test_fir_q31
517 suite FIR Q15 {
542 FIR Filter:test_fir_q15
548 suite FIR Q7 {
[all …]
Ddesc_f16.txt723 group FIR {
724 class = FIR
725 folder = FIR
727 suite FIR F16 {
Ddesc.txt3147 group FIR {
3148 class = FIR
3149 folder = FIR
3151 suite FIR F64 {
3169 suite FIR F32 {
3187 suite FIR Q31 {
3205 suite FIR Q15 {
3223 suite FIR Q7 {
/cmsis-dsp-latest/PythonWrapper/examples/kws_example/kws/
DAppNodes.h138 template<typename IN, int inputSize,typename OUT,int outputSize> class FIR; variable
143 class FIR<q15_t,inputSize,q15_t,inputSize>: public GenericNode<q15_t,inputSize,q15_t,inputSize>
146FIR(FIFOBase<q15_t> &src,FIFOBase<q15_t> &dst):GenericNode<q15_t,inputSize,q15_t,inputSize>(src,ds… in FIR() function
Dscheduler.cpp104 FIR<q15_t,98,q15_t,98> fir(fifo3,fifo4); in scheduler()
Dtest.dot35 <TD ALIGN="CENTER" PORT="i">fir<BR/>(FIR)</TD>
/cmsis-dsp-latest/dsppp/tests/
Dfilter_test.cpp476 struct FIR { struct
478 FIR(const PVector<T,TAPS> &coefs):coef_(coefs),state_(T{}) in FIR() function
570 FIR<T,BLOCK,TAPS> fir(coefs); in test() argument
/cmsis-dsp-latest/PythonWrapper/examples/kws_example/
Dappnodes.py92 class FIR(GenericNode): class
Dtest.dot35 <TD ALIGN="CENTER" PORT="i">fir<BR/>(FIR)</TD>
Dsched.py64 fir = FIR(98,98,fifo3,fifo4)
Dkws.ipynb938 "For the FIR, CMSIS-DSP is using a FIR instance structure and thus we need to define it"
1645 "* A FIR node which is filtering all the features for one second of signal\n",
1650 … window by 0.5 seconds. It can be implemented with a sliding window on the features before the FIR"
1692 "class FIR(GenericNode):\n",
1702 " return \"FIR\"\n",
1787 " fir=FIR(\"fir\",FEATURE_LENGTH,FEATURE_LENGTH)\n",
/cmsis-dsp-latest/PythonWrapper/docs/source/
Dapi.rst159 Then, the utilisation of the API si very similar to what was done for the FIR example: