본문 바로가기
Deep Learning (AI)/Pytorch Errors

[에러해결] apex was installed without --cuda_ext. Fused syncbn kernels will be unavailable. Python fallbacks will be used instead.

by 스프링섬머 2023. 7. 16.
728x90

pip uninstall apex

cd apex

rm -rf build (if it exists)

python setup.py install --cuda_ext --cpp_ext

 

run again, clear!

 

https://github.com/NVIDIA/apex/issues/86

 

Warning: apex was installed without --cuda_ext. · Issue #86 · NVIDIA/apex

I install apex according this sentence: python setup.py install --cuda_ext --cpp_ext 2.After that, using import apex to test, but it report warning as following: Warning: apex was installed without...

github.com

 

728x90