Reputation: 41
is it possible to run "for loops" of java code on GPU using OpenACC?? my data mining algorithm coded in java and i want to parallelism my sequential code on GPU. how can i parallelize my java code on GPU?
Upvotes: 4
Views: 1039
Reputation: 328614
As of today, tools are beginning to show support for automatically optimizing code (Youtube: Stochastic Optimization for x86 Binaries, Automatic Parallelization with Intel® Compilers) but they can't do that in the general case.
OpenACC is available for Fortran and C++, there is no Java support.
That means today, you still have to do this manually yourself. Look at frameworks like Akka or Hadoop to make your life easier.
For resources how to access shader languages, see Java GPU programming
Upvotes: 1