The Medical Detection Toolkit contains 2D + 3D implementations of prevalent object detectors such as Mask R-CNN, Retina Net, Retina U-Net, as well as a training and inference framework focused on dealing with medical images.
I have been trying to compile the cuda functions with arch=sm_61, but I am having a lot of problems. I have tried on both a Windows (Windows 10) and Linux (Centos 7) system, with different Cuda versions installed, but still do not have any success. Currently, I am running nvcc -c -o nms_kernel.cu.o nms_kernel.cu -x cu -Xcompiler -fPIC -arch=sm_61 on the Centos 7 system, and there is no output of it. No result saying it worked or failed. Similarly, when I run python build.py on nms_3D, there doesn't seem to be anything saying if it worked or didn't. If it does work, what type of result should I see?
I have been trying to compile the cuda functions with arch=sm_61, but I am having a lot of problems. I have tried on both a Windows (Windows 10) and Linux (Centos 7) system, with different Cuda versions installed, but still do not have any success. Currently, I am running
nvcc -c -o nms_kernel.cu.o nms_kernel.cu -x cu -Xcompiler -fPIC -arch=sm_61
on the Centos 7 system, and there is no output of it. No result saying it worked or failed. Similarly, when I runpython build.py
onnms_3D
, there doesn't seem to be anything saying if it worked or didn't. If it does work, what type of result should I see?