Can we do the following
status = DftiCreateDescriptor( &ifft_handle, DFTI_SINGLE,DFTI_COMPLEX, 1, 5400);
for(int i = 0; i < 100; i++) {
float scale = 1 * i;
status = DftiSetValue( ifft_handle, DFTI_FORWARD_SCALE, scale);
status = DftiCommitDescriptor( ifft_handle);// inovke fft
}
status = DftiFreeDescriptor (&ifft_handle);
So can we reuse the Dfti descriptor even after comitting?


