-
Notifications
You must be signed in to change notification settings - Fork 124
New issue
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
Adding compiling environment specs #3
Comments
Thank you for the note! Just added. |
Hi @ztzhang , I didn't understand what you wrote. You were using GCC version 6 but didn't worked because it does not work with version higher than 6 and then you switched to version 9 and worked? What?! Can you inform yours system specs, please? I'm trying to use this pytorch repo with AWS Sagemaker p2.xlarge instance (rhel fedora 2018.3 with single GPU K80) which by default has CUDA 10.0 and GCC 4.8.5. So I've installed CUDA 9.0 and as GCC is version 4.8.5 by default (that's not higher than 6) but it didn't worked when trying to compile roialign. The default configs (CUDA 10.0 and GCC 4.8.5) works with Mask R-CNN backbone using TensorFlow. What I'm missing here @art-programmer ? Thanks guys. |
@wullish sorry a typo. I did it with gcc 5.3.0. I never tried older version of gcc, as versions before 5.x may not have c++11 as default. |
Thanks man. Now, it's much clear! I'm going to try. |
I'm still getting "cffi.error.VerificationError: CompileError: command 'gcc' failed with exit status 1" when compiling "python build.py" roialign after updating to 5.3.0 gcc with CUDA 9.0. I dont know what to do anymore. I've tried with python3.7 and 3.6 but no success. I'm using sm_37 which is the version for K80 according to this guy here. Can you share yours envs specs or point to where I'm possibly doing wrong? Thanks! |
Solved! Happens that cudatoolkit=9.0 wasn't installed on my Conda environment. Best. |
Hi,
I tried to compile the mask-rcnn kernels and it seems it does not work with cuda10.0 and gcc versions higher than 6. Switching to gcc 5.3 and cuda9.0 works.
Would it be possible to add this in the README.MD? Thanks!
The text was updated successfully, but these errors were encountered: