user3826791
user3826791

Reputation: 41

can java code be parallelized on GPU using open ACC

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

Answers (1)

Aaron Digulla
Aaron Digulla

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

Related Questions