Firstly: Is it possible to use Java and let it (partly) run on or use GPUs? And if it's possible, is it possible to use the normal Java syntax and not using special cuda or opencl syntax?

I want just take my coded java source and let it run with the smallest changes possible on GPUs.

I would greatly appreciate code samples.

link|improve this question

40% accept rate
1  
1  
A close option might be Tilera which supports Java on its 100 core processors. – Peter Lawrey Jun 23 '11 at 21:35
feedback

4 Answers

Consider Aparapi http://aparapi.googlecode.com. It attempts to convert bytecode to OpenCL at runtime. So you can code for your GPU in pure Java.

Full disclosure, I am the Aparapi lead developer.

link|improve this answer
1  
Hmmm, will have a look, thanks! :) So I will need to buy a newlaptop with gpu even earlier! :) – Andreas Hornig Oct 16 '11 at 19:18
feedback

There are several Java bindings to CUDA and OpenCL (jcuda.org, jocl.org, something else also called jocl) but these are all just ways to get CUDA or OpenCL code running on the GPU via Java and require you to write your code specifically for that. I don't think there is an easy way to run an arbitrary multi-threaded Java program on the GPU with just minor changes to the code.

What does your Java program do that you want to run on the GPU?

You have to take into account that the architecture of a GPU is quite different than that of a CPU; cores on a GPU are not general-purpose cores that can do anything and work independently, as in an Intel x86 CPU. To really take advantage of the specific SIMD architecture of a GPU, your code has to be written with that architecture in mind.

link|improve this answer
Hi, it's simulating a rocket trajectory, simply integrating the movement. And I want to bring it on GPU, because it's for my Boinc project aerospaceresearch.net/constellation and some users would really like to see a GPU app. And when it's faster, it's even better. Andreas – Andreas Hornig Jun 23 '11 at 21:34
2  
Is the algorithm massively parallelizable? You could study one of those CUDA or OpenCL bindings, learn about how GPUs work, and see how you can implement your algorithm in a way that is suited for the GPU. It's not as simple as just somehow recompiling your existing Java program... – Jesper Jun 23 '11 at 21:45
feedback

Have a look on http://code.google.com/p/java-gpu/.

It compiles pure java code into kernels, with only using annotations.

link|improve this answer
Java-GPU is quite old - AparAPI is much more frequently updated. – berry120 Jan 2 at 17:17
feedback

There is no way to run the Java code on a GPU. GPUs are programmed in a C like language. It's a C99 with some limitations and some extension. You need to write kernel code which is to be put onto the GPU together with all needed data. Afterwards the kernel can be run massively parallel to get a high calculation throughput.

Being a physicist myself, I doubt, that the calculation of a rocket trajectory can be calculated massively parallel. Your can do that traditionally in fluid dynamics, calculations of multi body problems with really large numbers of bodys and in mathematical calculations like finite element calculations.

I also would advise not to use CUDA, because you are bound to a special vendor (nVidia) and your users might have other hardware at home (ATI, IBM...). OpenCL is an open standard found at http://www.khronos.org. Have a look to examples: http://www.khronos.org/developers/resources/opencl. JOCL (http://www.jocl.org) can be used for that, but you need your customers to install it separately or you need to add it in you JNLP web start file.

link|improve this answer
There's no way to run normal Java bytecode on the CPU, and there's no way to convert generic Java code to OpenCL 100% of the time - but there are projects like aparapi which do run specially written pieces of Java on the GPU massively parallel. So technically speaking there is a way to run Java code on a GPU - it's just bound by certain restrictions and limitations (as you'd expect.) – berry120 Jan 2 at 17:24
That's very interesting. Thanks! I will have a look to it. I was not aware of this. Java is not my first choice for GPU programming ;-), but it sounds interesting to have a look at. – Rick-Rainer Ludwig Jan 2 at 21:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.