I am trying to install gputools of package R on a windows machine. According to install installation , windows support is not supported. However, the linux instructions relate to specifying package r where you can find the cuda folder, so I think this should be possible for windows.
Config.mk file
I changed the config.mk file, replacing each instance of $(CUDA_HOME) with C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v6.5/lib and $(R_HOME) with C:/R/R-3.1.2 .
After that I updated the package folder and tried to install it using install.packages("C:/Users/prg/Desktop/gputools_0.28.tar/gputools_0.28/gputools.zip", repos = NULL) , but this will give an error file 'src/config.mk' has the wrong MD5 checksum .
Is there a way to pass the MD5 test? Do I need to specify anything else in the config.mk folder?
After executing the cdeterman and RHertel sentences, I mounted the tar file using R CMD build gputools_0.28 after deleting the MD5 file. Trying to install the package now no longer gives a checksum error, but a compilation error:
* installing *source* package 'gputools' ... ** libs *** arch - i386 no DLL was created ERROR: compilation failed for package 'gputools' * removing 'C:/Users/prg/Desktop/gputools/gputools_0.28/gputools.Rcheck/gputools'
I installed Rtools and MinGw, any ideas on what I can do to build gputools?
source share