Yesterday, 20:19
I identified the problem: dlib's setup.py does not handle the CMAKE_ARGS variable for CUDA parameters correctly.
When the setup.py is unable to get the architecture, switch by default to "native" that in my case is sm_120, so the build that I sent you was able to run only on RTX50.
I changed the build script by usingĀ "CUDAARCHS=89;120" and now the problem is solved.
Install the dlib wheel with the command:
Dan
When the setup.py is unable to get the architecture, switch by default to "native" that in my case is sm_120, so the build that I sent you was able to run only on RTX50.
I changed the build script by usingĀ "CUDAARCHS=89;120" and now the problem is solved.
Install the dlib wheel with the command:
pip install dlib-20.0.99-cp313-cp313-win_amd64.whl --force-reinstallDan

