MIC-DKFZ / medicaldetectiontoolkit

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.
Apache License 2.0
1.31k stars 297 forks source link

Compile Cuda Functions Help #112

Open kleingeo opened 4 years ago

kleingeo commented 4 years ago

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?