Checkout latest flashlight master branch(with latest commit 8d6688b8ea6761ca81eee0c7a5f7117b56e02758)
used the following command to build flashlight
cmake .. -DCMAKE_BUILD_TYPE=Release -DFL_BACKEND=CUDA -DCMAKE_INSTALL_PREFIX=/home/Self/Research/Work/facebook/flashlight/ -DArrayFire_DIR=/data/Self/facebook/arrayfire/build
Build was successful and didmake installand got the following files in the dir /home/Self/Research/Work/facebook/flashlight/lib/
libflashlight.a
libflashlight-app-asr.a
libfl-libraries.a
libfl-libraries-cuda.a
libwarpctc.so
Then checked out latest master branch of wav2letter (latest commit: 6c4db18f79e4d14e5b9ee72ca9a7fcdf4c2558bf)
cmake .. -DCMAKE_BUILD_TYPE=Release -DW2L_BUILD_INFERENCE=ON -DW2L_LIBRARIES_USE_CUDA=ON -DCMAKE_INSTALL_PREFIX=/home/Self/Research/Work/facebook/wav2letter -DArrayFire_DIR=/data/Self/facebook/arrayfire/build -Dflashlight_DIR=/data/Self/facebook/flashlight/build/cmake/install
the Cmake command is giving the following error:
flashlight must be build with app/asr for wav2letter++
Using UBUNTU 18.04 with CUDA (10.2) and CUDNN (7.6.5)
My bad, fixed the issue by pointing to install directory of flashlight. Thank you
Most helpful comment
My bad, fixed the issue by pointing to install directory of flashlight. Thank you