Can you please guide me, how to lauch JCUDA application using windows command line. Because I am working on MPJ (A Java binding for MPI) with JCuda.
So to run MPJ application I need to set up its paths and other stuff like that. Then I compile and run it on command line.
But If I have integrated JCUDA with MPJ then then how to run JCUDA from command Line.
Just tell me the command line compile and run command.
Assuming that the DLLs are located either in the directory from where you start your program, or in a directory which is contained in the PATH environment variable, the command lines are
for running TheProgram. Further details are depending on your project setup (e.g. further JARs for MPJ that have to be added to the classpath, or specifiying the package where TheProgram is located…)
I’ve not yet been concerned with MPI/MPJ, but mixing this with JCuda sounds interesting (and probably challenging ;))