If building the application from source, you can modify your application to invoke AOCL-FFTZ APIs to directly invoke aocl_fftz library without the help of fftw_wrapper.
Follow these steps to integrate AOCL-FFTZ into your application from source:
Make the required changes in your application to invoke AOCL-FFTZ API. Refer to the examples in the API Guide or the installed package for details on how to invoke the AOCL-FFTZ APIs to perform FFT on complex and real data type.
Make necessary changes in your build system to link your application to AOCL-FFTZ library.
Build the application.
If the library is linked via dynamic linking, before running the application, ensure that it is pointing to the correct AOCL-FFTZ library. If not, use these steps to ensure the right dependency:
On Linux:
export LD_LIBRARY_PATH="<path to aocl-fftz lib>":$LD_LIBRARY_PATH
On Windows:
set PATH="<path to aocl-fftz lib>";%PATH%
Run the application.