Slava Primenko
Slava Primenko
I had a similar problem when building Whisper on Jetson Nano with CUDA 10.2. It helped to use CMake: ``` mkdir build cd build cmake -DWHISPER_CUBLAS=1 .. make -j4 ```...
I had the same issue on NVIDIA Jetson Nano, and it helped to update gcc to version 8.5 and to use CMake. It might also work with gcc-9, which is...
Not sure if this is useful, but here is a list of `cudaHostRegister*` parameters that exist in CUDA 10.2 API: ``` #define cudaHostRegisterDefault 0x00 /**< Default host memory registration flag...