DSPSR documentation has moved to ReadTheDocs
Home
|
DSPSR user documentation: dspsrConfigure dspsr to use one or more Graphics Processing UnitsTo compile dspsr with CUDA support, first set the PACKAGES environment variable to include the directory in which the cuda software has been installed; e.g.setenv PACKAGES /usr/local/cuda-4.2then run the dspsr configure script; e.g. cd dspsr/ ./configureWhen the configure script finishes, you can verify that CUDA was detected by running grep CUDA Makefilethis should output something like CUDA_CFLAGS = -I/usr/local/cuda-4.2/include CUDA_LIBS = -L/usr/local/cuda-4.2/lib64 -lcudartThen run make make installand verify that cuda is a command-line option; e.g. dspsr -h | grep cudashould yield -cuda devices comma-separated list of CUDA devicesYou're now ready to go! The argument to the -cuda command-line option is a comma separated list of cuda device identifiers. For example
|