Is CUDA 11.6 supported?
See original GitHub issueThis is a really promising project, congratulations and thanks for releasing it!
I’m trying to run the test script with your Eth3d model and this command:
python3 test.py --model_path path_to_mge_model --left img/test/left.png --right img/test/right.png --size 1024x1536 --output disparity.png
But the code hangs up and doesn’t return from this line in extractor.py:82:
self.conv2 = M.Conv2d(128, output_dim, kernel_size=1)
which is called form load_model
in test.py:15
model = Model(max_disp=256, mixed_precision=False, test_mode=True)
My GPU is NVIDIA RTX A6000 and the CUDA version on the system is v11.6
Issue Analytics
- State:
- Created a year ago
- Comments:14
Top Results From Across the Web
CUDA 12.0 Release Notes - NVIDIA Documentation Center
Each release of the CUDA Toolkit requires a minimum version of the CUDA driver. The CUDA driver is backward compatible, meaning that applications...
Read more >Nvidia driver and CUDA version compatibility chart - Github-Gist
Nvidia driver and CUDA version compatibility chart · GitHub. Instantly share code, notes, and snippets.
Read more >Does CUDA 11 work with older GPUs? - Reddit
CUDA 11.2 support all the way back to compute capability 3.5, so you are good. In the compute capability tables in the 11.2...
Read more >Is Cuda Toolkit release 11.7 compatible with pytorch version ...
There is a table with CUDA compatibility: ... At this moment the latest supported CUDA version is 11.6. Share. Share a link to...
Read more >NVIDIA Reveals CUDA 11.6 Toolkit New Release - HPCwire
GSP driver architecture now default on Turing and Ampere GPUs · New API to allow disabling nodes in instantiated graph · Full support...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I have not tried training, but I was able to run with CUDA 11.3 in my Pytorch implementation, in case someone needs it: https://github.com/ibaiGorordo/CREStereo-Pytorch
based on @ibaiGorordo’s code, I enabled the training process with pytorch, here it is https://github.com/Qjizhi/CREStereo-Pytorch, thanks both @ibaiGorordo and the authors of this paper.