Adnios opened a new issue #20368: URL: https://github.com/apache/incubator-mxnet/issues/20368
## Description When I install mxnet from source, it gives me nvcc fatal unsupported gpu architecture 'compute_86'. My cuda version is 11.0. I can alleviate the issue by change `Auto` to `;8.0`. https://github.com/apache/incubator-mxnet/blob/b54b7f36c944b933f2aa94f224821548da5fcaf6/CMakeLists.txt#L43 I think the current mxnet installation may not handle cuda 11.0 well. ## To Reproduce ``` rm -rf build mkdir -p build && cd build cmake -GNinja \ -DUSE_CUDA=ON \ -DUSE_MKL_IF_AVAILABLE=ON \ -DCMAKE_CUDA_COMPILER_LAUNCHER=ccache \ -DCMAKE_C_COMPILER_LAUNCHER=ccache \ -DCMAKE_CXX_COMPILER_LAUNCHER=ccache \ -DCMAKE_BUILD_TYPE=Release \ .. ninja ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
