-
In my maven project (since I am trying to replicate some examples from the TornadoVM repo), I have the following dependencies added I took a look at the tornado-api-0.14.1.jar from my project, lo and behold TaskGraph was nowhere to be found in it. I compared contents of the jar with TornadoVM/tornado-api and then I spotted a lookalike instead: “TaskSchedule”. I tried to make things work by simply swapping names in my project… currently everything is falling apart. Please Help🙏🏾 |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 26 replies
-
The Having said this, we are working on a new release, hopefully by the beginning 2023, with |
Beta Was this translation helpful? Give feedback.
-
Hi Juan, Big Thanks🔥. My card is spinning⚡️ currently, I went over everything you said again, everything now works. I am just back to post about my journey so far on this thread to help others because I feel most of the issues I encountered could have been avoided if there was some blog or guide about creating a standalone tornado maven project in Intellij. INSTALLATION $ cd /home/linker
$ git clone https://github.com/beehive-lab/TornadoVM.git
$ cd TornadoVM
$ ./scripts/tornadoVMInstaller.sh --graal-jdk-17 --opencl --ptx SETUP
LAUNCH
BUILD (ONETIME/SETUP) [ previously: BUILD (EVERYTIME/LAUNCH) ]
CONFIGURATION (ONETIME/PROGRAM) $ tornado --printJavaFlags
TESTING Computing MxM of 512x512
Single Threaded CPU Execution: 1.18 GFlops, Total time = 227 ms
TornadoVM Execution on GPU (Accelerated): 268.44 GFlops, Total Time = 1 ms #didn't think tornado would be this fast... nice!
Speedup: 227.0x
Verification true after running |
Beta Was this translation helpful? Give feedback.
Hi Juan, Big Thanks🔥. My card is spinning⚡️ currently, I went over everything you said again, everything now works. I am just back to post about my journey so far on this thread to help others because I feel most of the issues I encountered could have been avoided if there was some blog or guide about creating a standalone tornado maven project in Intellij.
INSTALLATION
SETUP
pom.xml
is 0.15-dev instead) withMatrixMultiplication2D.…