I am looking for a Java lib that allows you to do fast calculations using vector (and possibly matrices).
By quickly, I mean that it takes advantage of GPU processing and / or SSE instructions. I am wondering if it is possible to find something as portable as possible. I understand that the JVM provides a thick layer of hardware abstraction.
I met JCUDA , but there is a drawback: on a computer without an Nnvidia graphics card, it should run in emulation (therefore, I believe that it will be ineffective as expected). Has anyone already tried this?
source
share