Farid Aboharb, MD PhD
Farid Aboharb, MD PhD
Same problem, running MATLAB 2018a, CUDA 9.0 (Though I have an ampere card), and setup (mex -setup C++) with Microsoft Visual C++ 2013. I do have a 3080 in the...
Have you tried generating a map file with very large distances b/t xcoords and ycoords? The system might default to generate 1:NChannel arrays for these if you don't use them,...
I mean rather than using 1:NChannel for instance, use 1:NChannel * pitch. For me, rather than 1:16, I'm using 1:16 * 100.
I am under the same impression as you, but I imagine (though don't quote me) that the x y and z coordinates are factored into what constitutes a realistic cross...
Also just ran into error: ' Error Running Kilosort! An unexpected error occurred trying to launch a kernel. The CUDA error was: invalid configuration argument.' The line specifically is in...
Same issue, even when commenting out the cuda:3 line ``` Torch not compiled with CUDA enabled File "C:\Track-Anything\tools\base_segmenter.py", line 26, in __init__ self.model.to(device=self.device) File "C:\Track-Anything\tools\interact_tools.py", line 37, in __init__ self.sam_controler...
I was looking at other posts about this problem, and after putting ``` import torch print("Torch version:",torch.__version__) print("Is CUDA enabled?",torch.cuda.is_available()) ``` I find ``` Torch version: 2.0.1+cpu Is CUDA enabled?...
Seems like I still have the same problem. Even deleted the env and clean installed  I'll have to dig into why CUDA may not be turning on despite the...
Update: I got it working by following the procedure on this page: https://www.educative.io/answers/how-to-resolve-torch-not-compiled-with-cuda-enabled. Had to uninstall Torch and reinstall using instructions here: https://pytorch.org/get-started/locally/
I got the error described in the OP, and upon trying @Abijeet123's solution, ended up with an issue related to wheels - same issue going on here seemingly - https://github.com/open-mmlab/mmcv/issues/1055