OpenACC を使用して GPU で Java コードの「for ループ」を実行することは可能ですか?? 私のデータ マイニング アルゴリズムは Java でコーディングされており、GPU でシーケンシャル コードを並列処理したいと考えています。GPU で Java コードを並列化するにはどうすればよいですか?
1 に答える
1
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
于 2015-04-14T09:19:12.197 に答える