We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#RUN apt install -y gcc-11 #RUN apt install -y g++-11 #RUN rm -f /usr/bin/gcc #RUN rm -f /usr/bin/g++ #RUN ln -s /usr/bin/gcc-11 gcc #RUN ln -s /usr/bin/g++-11 g++
The text was updated successfully, but these errors were encountered:
No branches or pull requests
TODO: move this comment to an issue tracker, where alteast it will be tracked and can then
be removed from the code. I am fairly certain we will launch with CUDA 12.2.2.
NVIDIA CUDA-11.8's nvcc (parallel C compiler) does not integrate with gcc-12. For the moment
use gcc-11. CUDA-12.2 is compatible, so using that for now. Using gcc-11 is quite a challenge
facebookresearch/maskrcnn-benchmark#25 (comment).
#RUN apt install -y gcc-11
#RUN apt install -y g++-11
#RUN rm -f /usr/bin/gcc
#RUN rm -f /usr/bin/g++
#RUN ln -s /usr/bin/gcc-11 gcc
#RUN ln -s /usr/bin/g++-11 g++
The text was updated successfully, but these errors were encountered: