Boosting Java performance using GPGPU [pdf]
1–10 of 13 posts
Re: Boosting Java performance using GPGPU [pdf]
#2Any way we can download some code to test this out or is this still unpublished code?
Re: Boosting Java performance using GPGPU [pdf]
#3The JDK is getting support for GPGPU via Truffle/Graal http://www.oracle.com/technetwork/java/jvmls2913wuerth-20139...
Re: Boosting Java performance using GPGPU [pdf]
#4Re: Boosting Java performance using GPGPU [pdf]
#5Here's another project that's providing GPU access from Java code: https://github.com/pcpratts/rootbeer1
Re: Boosting Java performance using GPGPU [pdf]
#6Here's another project that's providing GPU access from Java code: https://github.com/pcpratts/rootbeer1
Too bad it's CUDA and not OpenCL. I wonder what the rationale was. Seems natural to use an open GPGPU framework for a Java application.
Re: Boosting Java performance using GPGPU [pdf]
#7Here's another project that's providing GPU access from Java code: https://github.com/pcpratts/rootbeer1
Too bad it's CUDA and not OpenCL. I wonder what the rationale was. Seems natural to use an open GPGPU framework for a Java application.
Not sure that his explanation is accurate, though.
Re: Boosting Java performance using GPGPU [pdf]
#8Earlier quoted context omitted.
Too bad it's CUDA and not OpenCL. I wonder what the rationale was. Seems natural to use an open GPGPU framework for a Java application.
Probably just because Nvidia cards dominate the market for most GPGPU use cases.
Re: Boosting Java performance using GPGPU [pdf]
#9Earlier quoted context omitted.
Probably just because Nvidia cards dominate the market for most GPGPU use cases.
OpenCL is cross-platform, so it would support nvidia, ATI, Intel, CPUs, etc.
Re: Boosting Java performance using GPGPU [pdf]
#10Earlier quoted context omitted.
OpenCL is cross-platform, so it would support nvidia, ATI, Intel, CPUs, etc.
AFAIK only OpenCL 1.1 (or 1.2?) is available on nvidia though, not OpenCL 2.0 or 2.1. So, unfortunately, if you want to support nvidia (eg AWS GPU instances), then OpenCL may not be the best choice :-(