Clément Pinard
Clément Pinard
Maybe you can install it from anaconda ? https://anaconda.org/anaconda/gcc_linux-64
Can you put the log when you install it directly from source instead ? with `python setup.py build` Other than that, pytorch gets the compiler that the environment variable `CXX`...
Hi, sorry for the delay. Is the model running fine in fp32 ? Is the model running fine when only using 1 gpu ?
Hi, thanks for your interest in this repo. Can you add some details ? What code do you use exactly ? Do you have a repo name ? I used...
Hi, what hardware are you using ? It looks like you have different GPU and that the module is only built for the first gpu, which is not the same...
Ok so this is not this problem. I just tested your code with my computer, that has 1 1080 Ti and I didn't get the "segmentation fault" at the end...
It seems that pytorch is not installed on your device. You need to install it before because correlation-sampler package dependencies need torch module.
Hi, the way I see it, you just need to rebuild from scratch so that it will link against cuda 10 instead of cuda9. Remove and reinstall from pip or...
You probably need to extend the C++/Cuda code for that. Shouldn't be too hard, but it will be very verbose. Essentially, you go from a 4D cost volume (x, y,...
Now it's a problem of compiler. The compiler that was used to compile pytorch and your compiler have different ABIs (not an expert on the subject) You need to either...