Syncleus / aparapi

The New Official Aparapi: a framework for executing native Java and Scala code on the GPU.
http://aparapi.com
Apache License 2.0
465 stars 59 forks source link

Is it possible to execute external Jar Files? #155

Open flo2000ace opened 4 years ago

flo2000ace commented 4 years ago

Hey,

is it possible to execute external jar files with this tool, so that those get runned with the graphics card? If yes how should i do it, i tried to launch it per console in the Kernel.

Kernel kernel = new Kernel(){ @Override public void run() { Runtime.getRuntime().exec("cmd /c start cmd.exe"); } }; The cmd is there only a test case, but this would need a IOException -> Try Catch and those aren't supportet. Anyone a Idea?

Thanks.